Bash Scripting - Text Processing in Scripts
Identify the error in this awk command:
awk '{print $2}' -F: file.txtawk '{print $2}' -F: file.txt-F option must be placed before the awk program, not after.awk -F: '{print $2}' file.txt.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions