6 lines
56 B
Plaintext
6 lines
56 B
Plaintext
|
for var in "$@"
|
||
|
do
|
||
|
pkill -u $var
|
||
|
userdel -f $var
|
||
|
done
|