In the Llama merlyn uses this to illustrate a grep command: grep abc somefile >results Llama says this should search the file and pipe (?right term?) the results to a file so named. I tried to construct my own from the model like so:
#!/usr/local/bin/perl -w
use strict;
grep abc menu.txt >results.txt;
But I get this error:Not enough arguments for grep Can someone explain what is wrong? I looked at the definition in perlfunc and I see a whole other construct... TIA jg