2017-02-12 20:48:15 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# This file must be sourced in sh:
|
|
|
|
#
|
|
|
|
# . `which env_parallel.sh`
|
|
|
|
#
|
|
|
|
# after which 'env_parallel' works
|
|
|
|
#
|
|
|
|
#
|
2018-12-28 11:47:25 +00:00
|
|
|
# Copyright (C) 2016-2019
|
2017-02-12 20:48:15 +00:00
|
|
|
# Ole Tange and Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>
|
|
|
|
# or write to the Free Software Foundation, Inc., 51 Franklin St,
|
|
|
|
# Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
env_parallel() {
|
|
|
|
# env_parallel.sh
|
|
|
|
|
|
|
|
_names_of_ALIASES() {
|
2018-04-22 21:32:22 +00:00
|
|
|
# alias fails on Unixware 5
|
|
|
|
for _i in `alias 2>/dev/null | perl -ne 's/^alias //;s/^(\S+)=.*/$1/ && print' 2>/dev/null`; do
|
2017-12-03 00:40:01 +00:00
|
|
|
# Check if this name really is an alias
|
|
|
|
# or just part of a multiline alias definition
|
|
|
|
if alias $_i >/dev/null 2>/dev/null; then
|
|
|
|
echo $_i
|
|
|
|
fi
|
|
|
|
done
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_bodies_of_ALIASES() {
|
2017-12-03 00:40:01 +00:00
|
|
|
# alias may return:
|
|
|
|
# myalias='definition' (GNU/Linux ash)
|
|
|
|
# alias myalias='definition' (FreeBSD ash)
|
|
|
|
# so remove 'alias ' from first line
|
|
|
|
for _i in "$@"; do
|
|
|
|
echo 'alias '"`alias $_i | perl -pe '1..1 and s/^alias //'`"
|
|
|
|
done
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_names_of_maybe_FUNCTIONS() {
|
2017-12-01 19:53:56 +00:00
|
|
|
set | perl -ne '/^([A-Z_0-9]+)\s*\(\)\s*\{?$/i and print "$1\n"'
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_names_of_FUNCTIONS() {
|
|
|
|
# myfunc is a function
|
2018-04-20 21:29:44 +00:00
|
|
|
LANG=C type `_names_of_maybe_FUNCTIONS` |
|
2017-02-12 20:48:15 +00:00
|
|
|
perl -ne '/^(\S+) is a function$/ and not $seen{$1}++ and print "$1\n"'
|
|
|
|
}
|
|
|
|
_bodies_of_FUNCTIONS() {
|
2018-04-20 21:29:44 +00:00
|
|
|
LANG=C type "$@" | perl -ne '/^(\S+) is a function$/ or print'
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_names_of_VARIABLES() {
|
|
|
|
# This may screw up if variables contain \n and =
|
2018-01-22 16:23:23 +00:00
|
|
|
set | perl -ne 's/^(\S+?)=.*/$1/ and print;'
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_bodies_of_VARIABLES() {
|
|
|
|
# Crappy typeset -p
|
|
|
|
for _i in "$@"
|
|
|
|
do
|
|
|
|
perl -e 'print @ARGV' "$_i="
|
|
|
|
eval echo \"\$$_i\" | perl -e '$/=undef; $a=<>; chop($a); print $a' |
|
|
|
|
perl -pe 's/[\002-\011\013-\032\\\#\?\`\(\)\{\}\[\]\^\*\<\=\>\~\|\; \"\!\$\&\202-\377]/\\$&/go;'"s/'/\\\'/g; s/[\n]/'\\n'/go;";
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
}
|
2018-07-11 16:46:05 +00:00
|
|
|
_ignore_HARDCODED() {
|
|
|
|
# These names cannot be detected
|
|
|
|
echo '(_|TIMEOUT)'
|
|
|
|
}
|
|
|
|
_ignore_READONLY() {
|
|
|
|
readonly | perl -e '@r = map {
|
|
|
|
chomp;
|
|
|
|
# sh on UnixWare: readonly TIMEOUT
|
|
|
|
# ash: readonly var='val'
|
|
|
|
# ksh: var='val'
|
|
|
|
s/^(readonly )?([^= ]*)(=.*|)$/$2/ or
|
|
|
|
# bash: declare -ar BASH_VERSINFO=([0]="4" [1]="4")
|
|
|
|
# zsh: typeset -r var='val'
|
|
|
|
s/^\S+\s+\S+\s+(\S[^=]*)(=.*|$)/$1/;
|
|
|
|
$_ } <>;
|
|
|
|
$vars = join "|",map { quotemeta $_ } @r;
|
|
|
|
print $vars ? "($vars)" : "(,,nO,,VaRs,,)";
|
|
|
|
'
|
|
|
|
}
|
2017-02-12 20:48:15 +00:00
|
|
|
_remove_bad_NAMES() {
|
|
|
|
# Do not transfer vars and funcs from env_parallel
|
2018-07-11 16:46:05 +00:00
|
|
|
_ignore_RO="`_ignore_READONLY`"
|
|
|
|
_ignore_HARD="`_ignore_HARDCODED`"
|
|
|
|
# Macos-grep does not like long patterns
|
|
|
|
# Old Solaris grep does not support -E
|
|
|
|
# Perl Version of:
|
|
|
|
# grep -Ev '^(...)$' |
|
|
|
|
perl -ne '/^(
|
|
|
|
PARALLEL_ENV|
|
|
|
|
PARALLEL_TMP|
|
|
|
|
_alias_NAMES|
|
|
|
|
_bodies_of_ALIASES|
|
|
|
|
_bodies_of_FUNCTIONS|
|
|
|
|
_bodies_of_VARIABLES|
|
|
|
|
_error_PAR|
|
|
|
|
_function_NAMES|
|
|
|
|
_get_ignored_VARS|
|
|
|
|
_grep_REGEXP|
|
|
|
|
_ignore_HARD|
|
|
|
|
_ignore_HARDCODED|
|
|
|
|
_ignore_READONLY|
|
|
|
|
_ignore_RO|
|
|
|
|
_ignore_UNDERSCORE|
|
|
|
|
_list_alias_BODIES|
|
|
|
|
_list_function_BODIES|
|
|
|
|
_list_variable_VALUES|
|
|
|
|
_make_grep_REGEXP|
|
|
|
|
_names_of_ALIASES|
|
|
|
|
_names_of_FUNCTIONS|
|
|
|
|
_names_of_VARIABLES|
|
|
|
|
_names_of_maybe_FUNCTIONS|
|
|
|
|
_parallel_exit_CODE|
|
|
|
|
_prefix_PARALLEL_ENV|
|
|
|
|
_prefix_PARALLEL_ENV|
|
|
|
|
_remove_bad_NAMES|
|
|
|
|
_remove_readonly|
|
|
|
|
_variable_NAMES|
|
|
|
|
_warning_PAR|
|
|
|
|
_which_PAR)$/x and next;
|
2017-02-12 20:48:15 +00:00
|
|
|
# Filter names matching --env
|
2017-12-04 21:44:34 +00:00
|
|
|
/^'"$_grep_REGEXP"'$/ or next;
|
|
|
|
/^'"$_ignore_UNDERSCORE"'$/ and next;
|
2018-07-11 16:46:05 +00:00
|
|
|
# Remove readonly variables
|
|
|
|
/^'"$_ignore_RO"'$/ and next;
|
|
|
|
/^'"$_ignore_HARD"'$/ and next;
|
2017-12-04 21:44:34 +00:00
|
|
|
print;'
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
|
|
|
_get_ignored_VARS() {
|
|
|
|
perl -e '
|
|
|
|
for(@ARGV){
|
|
|
|
$next_is_env and push @envvar, split/,/, $_;
|
|
|
|
$next_is_env=/^--env$/;
|
|
|
|
}
|
|
|
|
if(grep { /^_$/ } @envvar) {
|
|
|
|
if(not open(IN, "<", "$ENV{HOME}/.parallel/ignored_vars")) {
|
|
|
|
print STDERR "parallel: Error: ",
|
|
|
|
"Run \"parallel --record-env\" in a clean environment first.\n";
|
|
|
|
} else {
|
|
|
|
chomp(@ignored_vars = <IN>);
|
|
|
|
}
|
|
|
|
}
|
2018-04-27 16:52:00 +00:00
|
|
|
if($ENV{PARALLEL_IGNORED_NAMES}) {
|
|
|
|
push @ignored_vars, split/\s+/, $ENV{PARALLEL_IGNORED_NAMES};
|
|
|
|
chomp @ignored_vars;
|
|
|
|
}
|
2018-07-18 15:29:57 +00:00
|
|
|
$vars = join "|",map { quotemeta $_ } @ignored_vars;
|
2018-04-27 16:52:00 +00:00
|
|
|
print $vars ? "($vars)" : "(,,nO,,VaRs,,)";
|
2017-02-12 20:48:15 +00:00
|
|
|
' -- "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the --env variables if set
|
|
|
|
# --env _ should be ignored
|
|
|
|
# and convert a b c to (a|b|c)
|
|
|
|
# If --env not set: Match everything (.*)
|
|
|
|
_make_grep_REGEXP() {
|
|
|
|
perl -e '
|
|
|
|
for(@ARGV){
|
|
|
|
/^_$/ and $next_is_env = 0;
|
|
|
|
$next_is_env and push @envvar, split/,/, $_;
|
|
|
|
$next_is_env = /^--env$/;
|
|
|
|
}
|
|
|
|
$vars = join "|",map { quotemeta $_ } @envvar;
|
|
|
|
print $vars ? "($vars)" : "(.*)";
|
|
|
|
' -- "$@"
|
|
|
|
}
|
2018-07-11 16:46:05 +00:00
|
|
|
_which_PAR() {
|
2017-12-04 21:44:34 +00:00
|
|
|
# type returns:
|
2018-01-22 16:23:23 +00:00
|
|
|
# ll is an alias for ls -l (in ash)
|
2017-12-04 21:44:34 +00:00
|
|
|
# bash is a tracked alias for /bin/bash
|
2018-09-20 22:15:14 +00:00
|
|
|
# true is a shell builtin (in bash)
|
2018-03-06 00:32:41 +00:00
|
|
|
# myfunc is a function (in bash)
|
|
|
|
# myfunc is a shell function (in zsh)
|
2018-09-20 22:15:14 +00:00
|
|
|
# which is /usr/bin/which (in sh, bash)
|
2017-12-04 21:44:34 +00:00
|
|
|
# which is hashed (/usr/bin/which)
|
2018-09-20 22:15:14 +00:00
|
|
|
# gi is aliased to `grep -i' (in bash)
|
2019-01-18 15:15:47 +00:00
|
|
|
# aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
|
2017-12-04 21:44:34 +00:00
|
|
|
# Return 0 if found, 1 otherwise
|
2018-04-20 21:29:44 +00:00
|
|
|
LANG=C type "$@" |
|
2018-01-22 16:23:23 +00:00
|
|
|
perl -pe '$exit += (s/ is an alias for .*// ||
|
|
|
|
s/ is aliased to .*// ||
|
2018-01-25 02:48:16 +00:00
|
|
|
s/ is a function// ||
|
2018-03-06 00:32:41 +00:00
|
|
|
s/ is a shell function// ||
|
2017-12-04 21:44:34 +00:00
|
|
|
s/ is a shell builtin// ||
|
|
|
|
s/.* is hashed .(\S+).$/$1/ ||
|
|
|
|
s/.* is (a tracked alias for )?//);
|
|
|
|
END { exit not $exit }'
|
|
|
|
}
|
2018-07-11 16:46:05 +00:00
|
|
|
_warning_PAR() {
|
2018-03-06 00:32:41 +00:00
|
|
|
echo "env_parallel: Warning: $@" >&2
|
|
|
|
}
|
2018-07-11 16:46:05 +00:00
|
|
|
_error_PAR() {
|
2018-03-06 00:32:41 +00:00
|
|
|
echo "env_parallel: Error: $@" >&2
|
|
|
|
}
|
2018-08-22 22:21:29 +00:00
|
|
|
|
2018-07-11 16:46:05 +00:00
|
|
|
if _which_PAR parallel >/dev/null; then
|
2017-12-04 21:44:34 +00:00
|
|
|
true parallel found in path
|
2017-02-12 20:48:15 +00:00
|
|
|
else
|
2018-07-11 16:46:05 +00:00
|
|
|
_error_PAR 'parallel must be in $PATH.'
|
2017-04-17 14:25:58 +00:00
|
|
|
return 255
|
2017-02-12 20:48:15 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Grep regexp for vars given by --env
|
|
|
|
_grep_REGEXP="`_make_grep_REGEXP \"$@\"`"
|
|
|
|
|
|
|
|
# Deal with --env _
|
|
|
|
_ignore_UNDERSCORE="`_get_ignored_VARS \"$@\"`"
|
|
|
|
|
|
|
|
# --record-env
|
|
|
|
if perl -e 'exit grep { /^--record-env$/ } @ARGV' -- "$@"; then
|
|
|
|
true skip
|
|
|
|
else
|
|
|
|
(_names_of_ALIASES;
|
|
|
|
_names_of_FUNCTIONS;
|
|
|
|
_names_of_VARIABLES) |
|
|
|
|
cat > $HOME/.parallel/ignored_vars
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2018-04-27 16:52:00 +00:00
|
|
|
# --session
|
|
|
|
if perl -e 'exit grep { /^--session$/ } @ARGV' -- "$@"; then
|
|
|
|
true skip
|
|
|
|
else
|
2019-01-18 15:15:47 +00:00
|
|
|
# Insert ::: between each level of session
|
|
|
|
# so you can pop off the last ::: at --end-session
|
|
|
|
PARALLEL_IGNORED_NAMES="`echo \"$PARALLEL_IGNORED_NAMES\";
|
|
|
|
echo :::;
|
|
|
|
(_names_of_ALIASES;
|
|
|
|
_names_of_FUNCTIONS;
|
|
|
|
_names_of_VARIABLES) | perl -ne '
|
|
|
|
BEGIN{
|
|
|
|
map { $ignored_vars{$_}++ }
|
|
|
|
split/\s+/, $ENV{PARALLEL_IGNORED_NAMES};
|
|
|
|
}
|
|
|
|
chomp;
|
|
|
|
for(split/\s+/) {
|
|
|
|
if(not $ignored_vars{$_}) {
|
|
|
|
print $_,\"\\n\";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'`"
|
2018-04-27 16:52:00 +00:00
|
|
|
export PARALLEL_IGNORED_NAMES
|
|
|
|
return 0
|
|
|
|
fi
|
2019-01-18 15:15:47 +00:00
|
|
|
if perl -e 'exit grep { /^--end.?session$/ } @ARGV' -- "$@"; then
|
|
|
|
true skip
|
|
|
|
else
|
|
|
|
# Pop off last ::: from PARALLEL_IGNORED_NAMES
|
|
|
|
PARALLEL_IGNORED_NAMES="`perl -e '
|
|
|
|
$ENV{PARALLEL_IGNORED_NAMES} =~ s/(.*):::.*?$/$1/s;
|
|
|
|
print $ENV{PARALLEL_IGNORED_NAMES}
|
|
|
|
'`"
|
|
|
|
return 0
|
|
|
|
fi
|
2017-02-12 20:48:15 +00:00
|
|
|
# Grep alias names
|
2017-12-01 19:53:56 +00:00
|
|
|
_alias_NAMES="`_names_of_ALIASES | _remove_bad_NAMES | xargs echo`"
|
2017-02-12 20:48:15 +00:00
|
|
|
_list_alias_BODIES="_bodies_of_ALIASES $_alias_NAMES"
|
|
|
|
if [ "$_alias_NAMES" = "" ] ; then
|
|
|
|
# no aliases selected
|
|
|
|
_list_alias_BODIES="true"
|
|
|
|
fi
|
|
|
|
unset _alias_NAMES
|
|
|
|
|
|
|
|
# Grep function names
|
2017-12-01 19:53:56 +00:00
|
|
|
_function_NAMES="`_names_of_FUNCTIONS | _remove_bad_NAMES | xargs echo`"
|
2017-02-12 20:48:15 +00:00
|
|
|
_list_function_BODIES="_bodies_of_FUNCTIONS $_function_NAMES"
|
|
|
|
if [ "$_function_NAMES" = "" ] ; then
|
|
|
|
# no functions selected
|
|
|
|
_list_function_BODIES="true"
|
|
|
|
fi
|
|
|
|
unset _function_NAMES
|
|
|
|
|
|
|
|
# Grep variable names
|
2017-12-01 19:53:56 +00:00
|
|
|
_variable_NAMES="`_names_of_VARIABLES | _remove_bad_NAMES | xargs echo`"
|
2017-02-12 20:48:15 +00:00
|
|
|
_list_variable_VALUES="_bodies_of_VARIABLES $_variable_NAMES"
|
|
|
|
if [ "$_variable_NAMES" = "" ] ; then
|
|
|
|
# no variables selected
|
|
|
|
_list_variable_VALUES="true"
|
|
|
|
fi
|
|
|
|
unset _variable_NAMES
|
|
|
|
|
|
|
|
PARALLEL_ENV="`
|
|
|
|
$_list_alias_BODIES;
|
|
|
|
$_list_function_BODIES;
|
|
|
|
$_list_variable_VALUES;
|
|
|
|
`"
|
|
|
|
export PARALLEL_ENV
|
|
|
|
unset _list_alias_BODIES
|
|
|
|
unset _list_variable_VALUES
|
|
|
|
unset _list_function_BODIES
|
2017-11-26 15:18:55 +00:00
|
|
|
unset _grep_REGEXP
|
|
|
|
unset _ignore_UNDERSCORE
|
2017-04-17 14:25:58 +00:00
|
|
|
# Test if environment is too big
|
2018-07-11 16:46:05 +00:00
|
|
|
if `_which_PAR true` >/dev/null 2>/dev/null ; then
|
2018-01-25 02:48:16 +00:00
|
|
|
parallel "$@";
|
2017-04-17 14:25:58 +00:00
|
|
|
_parallel_exit_CODE=$?
|
|
|
|
unset PARALLEL_ENV;
|
|
|
|
return $_parallel_exit_CODE
|
|
|
|
else
|
|
|
|
unset PARALLEL_ENV;
|
2018-07-11 16:46:05 +00:00
|
|
|
_error_PAR "Your environment is too big."
|
|
|
|
_error_PAR "You can try 3 different approaches:"
|
|
|
|
_error_PAR "1. Run 'env_parallel --session' before you set"
|
|
|
|
_error_PAR " variables or define functions."
|
|
|
|
_error_PAR "2. Use --env and only mention the names to copy."
|
|
|
|
_error_PAR "3. Try running this in a clean environment once:"
|
|
|
|
_error_PAR " env_parallel --record-env"
|
|
|
|
_error_PAR " And then use '--env _'"
|
|
|
|
_error_PAR "For details see: man env_parallel"
|
2017-04-17 14:25:58 +00:00
|
|
|
return 255
|
|
|
|
fi
|
2017-02-12 20:48:15 +00:00
|
|
|
}
|
2017-11-26 15:18:55 +00:00
|
|
|
|
|
|
|
parset() {
|
2018-08-22 22:21:29 +00:00
|
|
|
_parset_PARALLEL_PRG=parallel
|
2017-11-26 15:18:55 +00:00
|
|
|
_parset_main "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
env_parset() {
|
2018-08-22 22:21:29 +00:00
|
|
|
_parset_PARALLEL_PRG=env_parallel
|
2017-11-26 15:18:55 +00:00
|
|
|
_parset_main "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
_parset_main() {
|
|
|
|
# If $1 contains ',' or space:
|
|
|
|
# Split on , to get the destination variable names
|
|
|
|
# If $1 is a single destination variable name:
|
|
|
|
# Treat it as the name of an array
|
|
|
|
#
|
|
|
|
# # Create array named myvar
|
|
|
|
# parset myvar echo ::: {1..10}
|
|
|
|
# echo ${myvar[5]}
|
|
|
|
#
|
|
|
|
# # Put output into $var_a $var_b $var_c
|
|
|
|
# varnames=(var_a var_b var_c)
|
|
|
|
# parset "${varnames[*]}" echo ::: {1..3}
|
|
|
|
# echo $var_c
|
|
|
|
#
|
|
|
|
# # Put output into $var_a4 $var_b4 $var_c4
|
|
|
|
# parset "var_a4 var_b4 var_c4" echo ::: {1..3}
|
|
|
|
# echo $var_c4
|
|
|
|
|
2018-08-22 22:21:29 +00:00
|
|
|
_make_TEMP() {
|
|
|
|
# mktemp does not exist on some OS
|
|
|
|
perl -e 'use File::Temp qw(tempfile);
|
|
|
|
$ENV{"TMPDIR"} ||= "/tmp";
|
|
|
|
print((tempfile(DIR=>$ENV{"TMPDIR"}, TEMPLATE => "parXXXXX"))[1])'
|
|
|
|
}
|
|
|
|
|
|
|
|
_parset_NAME="$1"
|
|
|
|
if [ "$_parset_NAME" = "" ] ; then
|
2017-11-26 15:18:55 +00:00
|
|
|
echo parset: Error: No destination variable given. >&2
|
|
|
|
echo parset: Error: Try: >&2
|
|
|
|
echo parset: Error: ' ' parset myarray echo ::: foo bar >&2
|
|
|
|
return 255
|
|
|
|
fi
|
|
|
|
shift
|
2018-08-22 22:21:29 +00:00
|
|
|
echo "$_parset_NAME" |
|
2017-11-26 15:18:55 +00:00
|
|
|
perl -ne 'chomp;for (split /[, ]/) {
|
|
|
|
# Allow: var_32 var[3]
|
|
|
|
if(not /^[a-zA-Z_][a-zA-Z_0-9]*(\[\d+\])?$/) {
|
|
|
|
print STDERR "parset: Error: $_ is an invalid variable name.\n";
|
|
|
|
print STDERR "parset: Error: Variable names must be letter followed by letters or digits.\n";
|
|
|
|
$exitval = 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit $exitval;
|
|
|
|
' || return 255
|
2018-08-22 22:21:29 +00:00
|
|
|
_exit_FILE=`_make_TEMP`
|
|
|
|
if perl -e 'exit not grep /,| /, @ARGV' "$_parset_NAME" ; then
|
|
|
|
# $_parset_NAME contains , or space
|
2017-11-26 15:18:55 +00:00
|
|
|
# Split on , or space to get the names
|
2018-04-22 21:32:22 +00:00
|
|
|
eval "`
|
2017-11-26 15:18:55 +00:00
|
|
|
# Compute results into files
|
2018-08-22 22:21:29 +00:00
|
|
|
($_parset_PARALLEL_PRG --files -k "$@"; echo $? > "$_exit_FILE") |
|
2018-04-22 21:32:22 +00:00
|
|
|
# var1= cat tmpfile1; rm tmpfile1
|
|
|
|
# var2= cat tmpfile2; rm tmpfile2
|
|
|
|
parallel -q echo {2}='\`cat {1}; rm {1}\`' :::: - :::+ \`
|
2018-08-22 22:21:29 +00:00
|
|
|
echo "$_parset_NAME" |
|
2017-11-26 15:18:55 +00:00
|
|
|
perl -pe 's/,/ /g'
|
2018-04-22 21:32:22 +00:00
|
|
|
\`
|
|
|
|
`"
|
2017-11-26 15:18:55 +00:00
|
|
|
else
|
2018-08-22 22:21:29 +00:00
|
|
|
# $_parset_NAME does not contain , or space
|
|
|
|
# => $_parset_NAME is the name of the array to put data into
|
|
|
|
# Supported in: bash zsh ksh mksh
|
|
|
|
# Arrays do not work in: sh ash dash
|
|
|
|
eval "$_parset_NAME=( $(
|
|
|
|
# Compute results into files. Save exit value
|
|
|
|
($_parset_PARALLEL_PRG --files -k "$@"; echo $? > "$_exit_FILE") |
|
|
|
|
perl -pe 'chop;$_="\"\`cat $_; rm $_\`\" "'
|
|
|
|
) )"
|
2017-11-26 15:18:55 +00:00
|
|
|
fi
|
2018-08-22 22:21:29 +00:00
|
|
|
return `cat "$_exit_FILE"; rm "$_exit_FILE"`
|
2017-11-26 15:18:55 +00:00
|
|
|
}
|