Skip to content

Instantly share code, notes, and snippets.

@lichti
Created June 28, 2016 14:54
Show Gist options
  • Save lichti/473c0e6ddc349d1bbce93fac8e97766b to your computer and use it in GitHub Desktop.
Save lichti/473c0e6ddc349d1bbce93fac8e97766b to your computer and use it in GitHub Desktop.
List users and groups
while read line; do if [ $(echo $line | cut -d: -f3) -ge $(grep -w UID_MIN /etc/login.defs | awk '{print $2}') ] && [ $(echo $line | cut -d: -f3) -lt $(grep -w UID_MAX /etc/login.defs | awk '{print $2}') ]; then echo "$(date +%d/%m/%Y-%H:%M) => $(id $(echo $line | cut -d: -f1))"; fi; done < /etc/passwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment