cat passwd | awk -F':' '{printf $1}' Is this command correct?

1.4k Views Asked by At

I'd like to know how cat passwd | awk -F':' '{printf $1}' works. cat /etc/passwd is a list of users with ID and folders from root to the current user (I don't know if it has something to do with cat passwd). -F is some kind of input file and {printf $1} is printing the first column. That's what I've search so far but seems confusing to me.

Can anyone help me or explain to me if it's right or wrong, please?

1

There are 1 best solutions below

0
On BEST ANSWER

This is equivalent to awk -F: '{print $1}' passwd. The cat command is superfluous as all it does is read a file.

The -F option determines the field separator for awk. The quotes around the colon are also superfluous since colon is not special to the shell in this context. The print invocation tells awk to print the first field using $1. You are not passing a format string, so you probably mean print instead of printf.