awk -F: '$1=="root"{print $0}' /etc/passwd
awk -F: '{if ($1=="root"); print $0}' /etc/passwd
awk '{if ($1=="root"){print $0}}' /etc/passwd
awk -F: '$1=="root"{print $1}' /etc/passwd