Bash Userlist
Bash
Download (.zip)
#!/bin/bash # userlist.sh
PASSWORD_FILE=/etc/passwd n=1 # User number
for name in $(awk 'BEGIN{FS=":"}{print $1}' < "$PASSWORD_FILE" ) # Field separator = : ^^^^^^ # Print first field ^^^^^^^^ # Get input from password file ^^^^^^^^^^^^^^^^^ do echo "USER #$n = $name" let "n += 1" done
# USER #1 = root # USER #2 = bin # USER #3 = daemon # ... # USER #30 = bozo
exit 0
|