Which command on the command line provides the same output as this executable awk script?
#! /usr/bin/awk -f
BEGIN {
print "example"
}
#! /usr/bin/awk -f
BEGIN {
print "example"
}A. awk 'BEGIN {print "example"}'
B. awk 'print "example"'
C. awk 'print {example}'
D. none of the mentioned
Answer: Option A

Join The Discussion