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

2019-01-14 12:53发布

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

5条回答
ゆ 、 Hurt°
2楼-- · 2019-01-14 13:12
 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.

查看更多
太酷不给撩
3楼-- · 2019-01-14 13:14

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.

查看更多
Ridiculous、
4楼-- · 2019-01-14 13:16

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)');
查看更多
小情绪 Triste *
5楼-- · 2019-01-14 13:22

I prefer to execute bash commands in perl with backticks "`". This way I get a return value, e.g.:

my $value = \`ls`;

Also, I don't have to use "bash -c" just to run a commmand. Works for me.

查看更多
冷血范
6楼-- · 2019-01-14 13:31

Inspired by the answer from @errant.info, I created something simpler and worked for me:

my $line="blastn -subject <(echo -e \"$seq1\") -query <(echo -e \"$seq2\") -outfmt 6";
my $result=qx(bash -c '$line');
print "$result\n";

The introduced $line variable allows modifying inputs ($seq1 and $seq2) each time. Hope it helps!

查看更多
登录 后发表回答