Skip to content

Instantly share code, notes, and snippets.

@rye
Last active August 29, 2015 13:55
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 rye/8754973 to your computer and use it in GitHub Desktop.
Save rye/8754973 to your computer and use it in GitHub Desktop.
Get the users on a nix box and dump them out into a pretty table.
#!/bin/bash
cat /etc/passwd | cut -d: -f1,3,5,6 | grep "1[0-9][0-9][0-9]" | cut -d: -f1,3,4 | grep "/home" | cut -d: -f1,2 | column -t -s : | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment