in reply to IPC::Run3 or qw operator issue?
Sometimes, I use this notation:
my $cmd = [ cmd => ( opt => $val, opt => $val ) ];
In this case,
my $cmd = [ p4 => ( where => $savefile ) ];
It's probably overkill. Alternatives:
my $cmd = [ p4 => 'where', $savefile ]; my $cmd = [ qw( p4 where ), $savefile ]; my $cmd = [ 'p4', 'where', $savefile ];
|
|---|