I have an awk program with executable permissions. In this program exists another awk command line like this.
system("awk -f program2 file"
When I run the executable this second program2 runs just fine. However, when I enter the executable into crontab to schedule this program to run only the executable runs, not program2. Is there something with crontab that does not allow the awk executable to give a second awk command?
system("awk -f program2 file"
When I run the executable this second program2 runs just fine. However, when I enter the executable into crontab to schedule this program to run only the executable runs, not program2. Is there something with crontab that does not allow the awk executable to give a second awk command?