2016-03-26 09:35:13 +00:00
|
|
|
#!/usr/bin/ksh
|
|
|
|
|
2016-03-16 23:50:45 +00:00
|
|
|
# This file must be sourced in ksh:
|
|
|
|
#
|
|
|
|
# source `which env_parallel.ksh`
|
|
|
|
#
|
|
|
|
# after which 'env_parallel' works
|
|
|
|
#
|
|
|
|
#
|
2016-03-26 09:35:13 +00:00
|
|
|
# Copyright (C) 2016
|
2016-03-16 23:50:45 +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
|
|
|
|
|
2016-07-05 11:28:22 +00:00
|
|
|
# Supports env of 127426 bytes
|
|
|
|
|
2016-03-16 23:50:45 +00:00
|
|
|
env_parallel() {
|
2016-07-04 12:54:38 +00:00
|
|
|
# env_parallel.ksh
|
|
|
|
|
|
|
|
# Get the --env variables if set
|
2016-07-05 11:28:22 +00:00
|
|
|
# --env _ should be ignored
|
2016-07-04 12:54:38 +00:00
|
|
|
# and convert a b c to (a|b|c)
|
|
|
|
# If --env not set: Match everything (.*)
|
2016-07-05 11:28:22 +00:00
|
|
|
_grep_REGEXP="$(
|
2016-07-04 12:54:38 +00:00
|
|
|
perl -e 'for(@ARGV){
|
2016-07-05 11:28:22 +00:00
|
|
|
/^_$/ and $next_is_env = 0;
|
2016-07-04 12:54:38 +00:00
|
|
|
$next_is_env and push @envvar, split/,/, $_;
|
|
|
|
$next_is_env=/^--env$/;
|
|
|
|
}
|
|
|
|
$vars = join "|",map { quotemeta $_ } @envvar;
|
|
|
|
print $vars ? "($vars)" : "(.*)";
|
|
|
|
' -- "$@"
|
|
|
|
)"
|
2016-07-05 11:28:22 +00:00
|
|
|
# Deal with --env _
|
|
|
|
_ignore_UNDERSCORE="$(
|
|
|
|
perl -e 'for(@ARGV){
|
|
|
|
$next_is_env and push @envvar, split/,/, $_;
|
|
|
|
$next_is_env=/^--env$/;
|
|
|
|
}
|
|
|
|
$underscore = grep { /^_$/ } @envvar;
|
|
|
|
print $underscore ? "grep -vf $ENV{HOME}/.parallel/ignored_vars" : "cat";
|
|
|
|
' -- "$@"
|
|
|
|
)"
|
2016-07-04 12:54:38 +00:00
|
|
|
|
|
|
|
# Grep alias names
|
|
|
|
_alias_NAMES="$(alias | perl -pe 's/=.*//' |
|
2016-07-05 11:28:22 +00:00
|
|
|
egrep "^${_grep_REGEXP}\$" | $_ignore_UNDERSCORE)"
|
2016-07-04 12:54:38 +00:00
|
|
|
_list_alias_BODIES="alias $_alias_NAMES | perl -pe 's/^/alias /'"
|
|
|
|
if [[ "$_alias_NAMES" = "" ]] ; then
|
|
|
|
# no aliases selected
|
|
|
|
_list_alias_BODIES="true"
|
|
|
|
fi
|
|
|
|
unset _alias_NAMES
|
|
|
|
|
|
|
|
# Grep function names
|
|
|
|
_function_NAMES="$(typeset +p -f | perl -pe 's/\(\).*//' |
|
2016-07-05 11:28:22 +00:00
|
|
|
egrep "^${_grep_REGEXP}\$" | $_ignore_UNDERSCORE)"
|
2016-07-04 12:54:38 +00:00
|
|
|
_list_function_BODIES="typeset -f $_function_NAMES"
|
|
|
|
if [[ "$_function_NAMES" = "" ]] ; then
|
|
|
|
# no functions selected
|
|
|
|
_list_function_BODIES="true"
|
|
|
|
fi
|
|
|
|
unset _function_NAMES
|
|
|
|
|
|
|
|
# Grep variable names
|
|
|
|
_variable_NAMES="$(typeset +p | perl -pe 's/^typeset .. //' |
|
2016-07-05 11:28:22 +00:00
|
|
|
egrep "^${_grep_REGEXP}\$" | $_ignore_UNDERSCORE |
|
2016-07-04 12:54:38 +00:00
|
|
|
egrep -v '^(PIPESTATUS)$')"
|
|
|
|
_list_variable_VALUES="typeset -p $_variable_NAMES"
|
|
|
|
if [[ "$_variable_NAMES" = "" ]] ; then
|
|
|
|
# no variables selected
|
|
|
|
_list_variable_VALUES="true"
|
|
|
|
fi
|
|
|
|
unset _variable_NAMES
|
|
|
|
|
|
|
|
# eval is needed for aliases - cannot explain why
|
|
|
|
export PARALLEL_ENV="$(
|
|
|
|
eval $_list_alias_BODIES;
|
|
|
|
$_list_variable_VALUES;
|
|
|
|
$_list_function_BODIES)";
|
|
|
|
unset _list_alias_BODIES
|
|
|
|
unset _list_variable_VALUES
|
|
|
|
unset _list_function_BODIES
|
|
|
|
`which parallel` "$@";
|
|
|
|
unset PARALLEL_ENV;
|
2016-03-16 23:50:45 +00:00
|
|
|
}
|
2016-07-04 12:54:38 +00:00
|
|
|
|
|
|
|
# _env_parallel() {
|
|
|
|
# # env_parallel.ksh
|
|
|
|
# export PARALLEL_ENV="$(alias | perl -pe 's/^/alias /';typeset -p|egrep -v 'typeset( -i)? -r|PIPESTATUS';typeset -f)";
|
|
|
|
# `which parallel` "$@";
|
|
|
|
# unset PARALLEL_ENV;
|
|
|
|
# }
|