summaryrefslogtreecommitdiff
path: root/vest
diff options
context:
space:
mode:
authorgraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-28 18:38:10 +0000
committergraehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-06-28 18:38:10 +0000
commit0c2454039d3548c8c56be7f55c161827b935b001 (patch)
treee18cec08f428eb8ee8403842e6c8ea969bae7c0c /vest
parent5c9419697fa7bfb77e40948ada16f8ec395a31e1 (diff)
shell escape
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@40 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest')
-rwxr-xr-xvest/parallelize.pl2
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 '';