Hey,
Guys I am writing a script thats more like the du -k command.
ls -l | grep '^d' | awk '{print $9, $5, $3}'
my output is
size file name LOGON name
00 anyfile anyuser
123 awkscript anyuser
87 beber anyuser
7646 something anyuser
Is it a way to get the 3rd column to display the users real name rather than his logon ID.
Guys I am writing a script thats more like the du -k command.
ls -l | grep '^d' | awk '{print $9, $5, $3}'
my output is
size file name LOGON name
00 anyfile anyuser
123 awkscript anyuser
87 beber anyuser
7646 something anyuser
Is it a way to get the 3rd column to display the users real name rather than his logon ID.