awk print with “:” as seperator AjayMay 19, 2014 I had to print logged in users with “:” as a separator used this and worked well cat /var/log/users.log | awk -F ":" '/1/ {print $5}' | sort -u | wc -l It's only fair to share...