vote up 3 vote down star

How can I use bash syntax in Perl's system() command?

I have a command that is bash-specific, e.g. the following, which uses bash's process substitution:

 diff <(ls -l) <(ls -al)

I would like to call it from Perl, using

 system("diff <(ls -l) <(ls -al)")

but it gives me an error because it's using sh instead of bash to execute the command:

sh: -c: line 0: syntax error near unexpected token `('
sh: -c: line 0: `sort <(ls)'
flag

43% accept rate

4 Answers

vote up 18 vote down check

Tell Perl to invoke bash directly. Use the list variant of system() to reduce the complexity of your quoting:

my @args = ( "bash", "-c", "diff <(ls -l) <(ls -al)" );
system(@args);

You may even define a subroutine if you plan on doing this often enough:

sub system_bash {
  my @args = ( "bash", "-c", shift );
  system(@args);
}

system_bash('echo $SHELL');
system_bash('diff <(ls -l) <(ls -al)');

Cheers, V.

link|flag
+1 for using the list variant – David Feb 20 at 21:57
This also prevents you from invoking /bin/sh just to run bash – cjm Feb 20 at 21:58
I agree, the list variant is nice. – dehmann Feb 20 at 22:11
vote up 4 vote down
 system("bash -c 'diff <(ls -l) <(ls -al)'")

should do it, in theory. Bash's -c option allows you to pass a shell command to execute, according to the man page.

link|flag
vote up 0 vote down

I had a similar question with Python's equivalent in "In python 2.4, how can I execute external commands with csh instead of bash?". hop's answer was rather insightful. It could apply to Perl as well.

link|flag
Going messing with the system /bin/sh is inviting trouble. – Jonathan Leffler Feb 20 at 22:11
I agree, but its useful to know why you can't use bash. Personally, I ended up using the bash -c 'cmd' form. But the "bash -c" puts you in the awkward position of either telling your users (if you care, as I do) what shell cmd you're actually running vs what the original, un-escaped command is. – Ross Rogers Feb 20 at 22:34
And you don't need to, because Perl has system LIST, which lets you run whatever program you want without having to mess with the default system shell and its quoting syntax. Even if that program happens to be a different shell. – cjm Feb 20 at 22:38
vote up -1 vote down

THe world outside of Linux that don't want to have to install bash to run Perl programms thanks you.

link|flag
Haha, that's okay. Fortunately, I'm the only one who will run this. It's a typical Perl throw-away thing. – dehmann Feb 21 at 2:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.