diff --git a/setNewQuota_ForAll.sh b/setNewQuota_ForAll.sh new file mode 100644 index 0000000..d03bec6 --- /dev/null +++ b/setNewQuota_ForAll.sh @@ -0,0 +1,10 @@ +#!/bin/bash +for i in `ls /home`; +do + if [ $i == 'lost+found' ] || [ $i == 'crille' ]; + then + continue + fi + /usr/sbin/setquota -u $i 1000M 1020M 0 0 /home + #echo "User: " $i +done \ No newline at end of file