aboutsummaryrefslogtreecommitdiffstats
path: root/init-sh/file_perm.sh
diff options
context:
space:
mode:
Diffstat (limited to 'init-sh/file_perm.sh')
-rwxr-xr-xinit-sh/file_perm.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/init-sh/file_perm.sh b/init-sh/file_perm.sh
index 9f76791..be834b7 100755
--- a/init-sh/file_perm.sh
+++ b/init-sh/file_perm.sh
@@ -3,6 +3,8 @@
IFS="
"
+echo -n "Setting files permissions : "
+
for line in `cat /$1`; do
file=`echo ${line} | awk '{print $1}'`
owner=`echo ${line} | awk '{print $2}'`
@@ -15,5 +17,7 @@ for line in `cat /$1`; do
chmod ${perm} ${file}
fi
done
+
+echo "done."