Tagged Questions
7
votes
4answers
2k views
What's the differences between system and backticks and pipes in Perl?
Perl supports three ways (that I know of) of running external programs:
system:
system PROGRAM LIST
as in:
system "abc";
backticks as in:
`abc`;
running it through a pipe as in:
open ...
2
votes
4answers
309 views
creating tidy shell script from ugly command line pipeline
I wrote a piped shell command that has multiple pipes in it that works great. I now want to put this in the form of a (tidy) shell script. Here is the script:
#!/bin/bash
for number in `cat ...