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

24,083

Solution 1

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)');

Solution 2

 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.

Solution 3

The problem with vladr's answers is that system won't capture the output to STDOUT from the command (which you would usually want), and it also doesn't allow executing more than one command (given the use of shift rather than accessing the full contents of @_).

Something like the following might be more suited to the problem:

my @cmd = ( 'diff <(ls -l) <(ls -al)', 'grep fu' );
my @stdout = exec_cmd( @cmd );
print join( "\n", @stdout );

sub exec_cmd
{
    my $cmd_str = join( ' | ', @_ );
    my @result = qx( bash -c '$cmd_str' );
    die "Failed to exec $cmd_str: $!" unless( $? == 0 && @result );
    return @result;
}

Unfortunately this won't prevent you from invoking /bin/sh just to run bash, however I don't see a workaround for this issue.

Share:
24,083
Frank
Author by

Frank

Updated on August 03, 2022

Comments

  • Frank
    Frank almost 2 years

    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)'
    
  • cjm
    cjm about 15 years
    This also prevents you from invoking /bin/sh just to run bash
  • jinyong lee
    jinyong lee almost 12 years
    How does shift work here? Would it be the same as $_[0]? Or is it something better?
  • musiphil
    musiphil over 11 years
    @Janis: The shift pops the first element in @_, namely $_[0], and returns it. So the effect is the same as using $_[0], plus modifying @_, which doesn't matter here.