Archives
Here are a couple of interesting Unix commands. That Makes the life easier for a Unix / Linux Administrator. I will keep posting on this series. 1. List Down all the users in the system cat /etc/passwd | sed -e ‘s/:.*$//’ (Prints usernames) cat /etc/passwd | cut -d : -f1,5 (prints usernames and description of [...]
Feb 22nd, 2011 | Filed under Linux Admin

