diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-28 18:38:10 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-06-28 18:38:10 +0000 |
commit | 0c2454039d3548c8c56be7f55c161827b935b001 (patch) | |
tree | e18cec08f428eb8ee8403842e6c8ea969bae7c0c /vest | |
parent | 5c9419697fa7bfb77e40948ada16f8ec395a31e1 (diff) |
shell escape
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@40 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest')
-rwxr-xr-x | vest/parallelize.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vest/parallelize.pl b/vest/parallelize.pl index 28260155..2fa318de 100755 --- a/vest/parallelize.pl +++ b/vest/parallelize.pl @@ -94,7 +94,7 @@ if ($no_which) { } #$cmd=abspath($cmd); for my $arg (@ARGV) { - $cmd .= " ".shell_escape($arg); + $cmd .= " ".escape_shell($arg); } die "Please specify a command to parallelize\n" if $cmd eq ''; |