Place Holder Products Code
Bash MySQL
Notes Return of the Fed Login
Admin Control Panel Email Control Panel Product Control Panel Debug Info Beacon Create Snippet Tag Control Panel

Extract Names from /etc/passwd With awk

awk -F':' '{print $1}' /etc/passwd

cat /etc/passwd but cut to only show the name, syntax much like that of cut

-F':' - line delimiter is a colon, '{print $1}' - command to run, here prints 2nd delimited field

Comments:

No Comments Yet!