- or download this
grep 'gateway' infile > outfile
- or download this
perl -ne'print if /gateway/' infile > outfile
- or download this
perl -ne"print if /gateway/" infile > outfile
- or download this
# Usage: script.pl infile outfile
# or
...
print $fh_out $_;
}
}