Skip to content
Snippets Groups Projects
Commit a08b470c authored by Dylan Wheeler's avatar Dylan Wheeler
Browse files

refactor: clean up echo statement to be more accurate about usage

parent 6e3ff36c
No related branches found
No related tags found
1 merge request!159FEAT: adding simple script to kill all of a user's currently running processes
......@@ -3,7 +3,7 @@
username="$1"
usage() {
echo "Usage: $0 -d USERNAME"
echo "Usage: $0 USERNAME"
}
if [ -z "$username" ]; then
......@@ -13,4 +13,4 @@ fi
userId=`id -u $1`
pkill -u $userId
\ No newline at end of file
pkill -u $userId
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment