Bash Print all user profiles
Bash
Download (.zip)
#!/bin/bash # allprofs.sh: print all user profiles
# This script written by Heiner Steven, and modified by the document author.
FILE=.bashrc # File containing user profile, #+ was ".profile" in original script.
for home in `awk -F: '{print $6}' /etc/passwd` do [ -d "$home" ] || continue # If no home directory, go to next. [ -r "$home" ] || continue # If not readable, go to next. (cd $home; [ -e $FILE ] && less $FILE) done
# When script terminates, there is no need to 'cd' back to original directory, #+ because 'cd $home' takes place in a subshell.
exit 0
|