awk -F':' '{print $1}' /etc/passwd
cat /etc/passwd but cut to only show the name, syntax much like that of cut
cut
-F':' - line delimiter is a colon, '{print $1}' - command to run, here prints 2nd delimited field
-F':'
'{print $1}'
No Comments Yet!