From 9514d746afc9f0b56d883e29737a995a4b9b6aac Mon Sep 17 00:00:00 2001 From: Christian Ohlsson Date: Mon, 3 Aug 2026 08:32:06 +0200 Subject: [PATCH] Add setNewQuota_ForAll.sh --- setNewQuota_ForAll.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setNewQuota_ForAll.sh 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