Skip to content

Instantly share code, notes, and snippets.

@gnzsnz
Created September 15, 2022 07:57
Show Gist options
  • Save gnzsnz/7a901c33b3dacc621bd15b233992b416 to your computer and use it in GitHub Desktop.
Save gnzsnz/7a901c33b3dacc621bd15b233992b416 to your computer and use it in GitHub Desktop.
List linux users

List linux users

this will list non system users only

getent passwd | awk -F: '$3 >= 1000 && $3 <=60000 { print $1}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment