Gawk and sed question

Can anyone tell me what this script does?

sort file1.txt | awk -F, -f event.gawk

Thank you.

sort a file
then perform 'some awk instructions' on the file which is delimited by a comma
where the awk instructions are in a file called event.gawk

1 Like

To decode all, you need to list the content of the file event.gawk .