Created
June 28, 2016 14:54
-
-
Save lichti/473c0e6ddc349d1bbce93fac8e97766b to your computer and use it in GitHub Desktop.
List users and groups
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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