I am writing a script that will read from a file named myfiles not stdin and print the lines containing the following words "everywhere" or 'nowhere.
#!/usr/bin/perl
#use strict
while (<>) {
chomp;
if (/^everywhere$|^nowhere$/)
print
}
How do I invoked the file myfiles at the beginning of the script? Any help is
appreciated.
Brady
---------------------------------
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
