Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
1.$cmd = [ qw(p4 submit -d $options{des} -f submitunchanged -i) ]; run3($cmd, \$stdin, \$stdout, \$stderr); print "\n$stderr\n"; Problem:-Not deciphering $options{des} $cmd = [ qw(p4 tag -l TEST_$options{r}_$dat $options{v}) ]; run3($cmd, \$stdin, \$stdout, \$stderr); print "\n$stderr\n"; Error:-$options{v} - no such file(s). The following commands work using system though system qq(p4 tag -l TEST_"$options{r}"_$date $options{v});
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problem and error writing a command
by wind (Priest) on Mar 11, 2011 at 07:24 UTC | |
by Anonymous Monk on Mar 11, 2011 at 08:17 UTC | |
by wind (Priest) on Mar 11, 2011 at 08:30 UTC | |
by Anonymous Monk on Mar 11, 2011 at 08:39 UTC | |
|
Re: problem and error writing a command
by ikegami (Patriarch) on Mar 11, 2011 at 07:25 UTC |