Add delete_all_users.sh

This commit is contained in:
2026-08-03 08:28:12 +02:00
parent 0181edf1e8
commit 823f3a4378

10
delete_all_users.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
for i in `ls /home`;
do
if [ $i == 'imcoh' ] || [ $i == 'crille' ];
then
continue
fi
sh ./deleteuser.sh $i
#echo "User: " $i
done