Skip to content

Instantly share code, notes, and snippets.

@o0-o
Last active May 7, 2019 02:28
Show Gist options
  • Save o0-o/576663f36875761341f10731b3d2d20f to your computer and use it in GitHub Desktop.
Save o0-o/576663f36875761341f10731b3d2d20f to your computer and use it in GitHub Desktop.
[Users Logged In] Prints all users currently logged in #Shell
# users_loggedin.sh
w -h |
awk '{ print $1 }' 2>/dev/null ||
exit 1 #failure
exit 0 #success
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment