This commit is contained in:
2021-06-23 10:37:21 +02:00
parent ef0a71e04d
commit d83164efd4

8
script.sh Normal file
View File

@@ -0,0 +1,8 @@
#! /bin/bash
set -eu
test -f $1 || { echo gimme a liste of user ; exit 1 ; }
while read user ; do
echo useradd ${user,}
done < $1