aboutsummaryrefslogtreecommitdiffstats
path: root/init-sh/file_perm.sh
blob: f69b222e63d228d4b2a2f4b4ce19355db680f296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

if [[ ! -s $1 ]]; then
	echo "I need a msec permfile in argument".
	exit 1
fi

echo -n "Setting files permissions : "

grep -v "^#" $1 | while read file owner perm; do
	if [[ ${owner} != current ]]; then
		chown ${owner} ${file} >& /dev/null
	fi
	chmod ${perm} ${file} >& /dev/null
done

echo "done."