Issue: I'm trying to run an awk script from the terminal and I keep getting
(No such file or directory)
So I've deleted everything but the essentials from the script and it still isn't working. Any ideas?
here is the awk script
#! /usr/bin/awk -f
BEGIN { print "Hello World!"; }
I know this is must be an embarrassingly simple issue, and I apologize!
... also I'm ultimately trying to work with a CSV file, where would I place that file's path in order to work within my script? Thanks!