Place Holder Projects Code
Bash MySQL JavaScript MySQL Quick Reference
Notes Documents Return of the Fed Login

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