Skip to content

Instantly share code, notes, and snippets.

View hmcqueen's full-sized avatar

Harvey McQueen hmcqueen

  • College Station, TX
  • 01:54 (UTC -05:00)
View GitHub Profile
@joshgachnang
joshgachnang / gist:2306795
Last active April 30, 2024 03:34
Bash Check Username of User Running Script
if [ "$(whoami)" != "username" ]; then
echo "Script must be run as user: username"
exit 255
fi