- or download this
#!/usr/bin/perl -w
use strict;
while (<STDIN>) {
print "PROCESSED $_";
}
- or download this
#!/usr/bin/perl -w
use strict;
...
while ($outputline = <READ>) {
print $outputline;
}
- or download this
open(RUN, "/usr/local/bin/ticket @ABC|") or die "useful error message
+here";