From ffa64c279138ac62e41cb91e2b461160bd039c57 Mon Sep 17 00:00:00 2001 From: James Hackett Date: Sun, 8 Oct 2023 02:28:03 +0100 Subject: [PATCH] Adds script to fix perms on user and group --- fixperms.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 fixperms.sh diff --git a/fixperms.sh b/fixperms.sh new file mode 100644 index 0000000..e55b09d --- /dev/null +++ b/fixperms.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +sudo find . -type d -exec chmod 775 {} \; + +sudo find . -type f -exec chmod 664 {} \; + +echo "use sudo and distro finds you"