Skip to content

Instantly share code, notes, and snippets.

@bsingr
Last active January 18, 2016 15:26
Show Gist options
  • Save bsingr/cea27050becb1fa3b3a9 to your computer and use it in GitHub Desktop.
Save bsingr/cea27050becb1fa3b3a9 to your computer and use it in GitHub Desktop.
List all users in the filesystem
#!/bin/bash
# users
find -printf "%u\n" | sort | uniq -c
# groups
find -printf "%g\n" | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment