Skip to content

Instantly share code, notes, and snippets.

@robmiller
Created September 21, 2015 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robmiller/b40b4feec91940c033c7 to your computer and use it in GitHub Desktop.
Save robmiller/b40b4feec91940c033c7 to your computer and use it in GitHub Desktop.
Delete unwanted users from your system (prompts before each one)
for user in $(cat /etc/passwd | cut -d: -f1); do; read "DELETE?Delete $user? "; [[ "$DELETE" =~ ^[Yy]$ ]] && echo "Removing $user"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment