Add setNewQuota_ForAll.sh

This commit is contained in:
2026-08-03 08:32:06 +02:00
parent e998b287f7
commit 9514d746af

10
setNewQuota_ForAll.sh Normal file
View File

@@ -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