$ cut -d: -f1 /etc/passwd $ cat /etc/passwd | sed -e 's/:.*//g' $ awk -F":" '{ print $1 }' /etc/passwd
Comment