Tell me the shell program to print home directory of each user. User details are stored in /etc/passwd

link|improve this question
1  
We help you with what you've tried. You want someone to build it for you, try rentacoder.com – OMG Ponies Feb 18 '11 at 17:20
for user in $(ls -1 /home/); do echo "--> user:" $user; echo "--> /etc/password:" cat /etc/passwd | grep $user; echo "--> home dir: " ls --color /home/$user ; echo ""; done – karlphillip Feb 18 '11 at 17:27
feedback

closed as not a real question by Matt Ball, Jim Lewis, OMG Ponies, osgx, Andy White Feb 18 '11 at 17:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

This is a short script:

cut -d : -f 6 /etc/passwd  
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.