Revision 8650
Added by Aaron Marcuse-Kubitza over 11 years ago
lib/util.run | ||
---|---|---|
39 | 39 |
|
40 | 40 |
echo_stdin () { tee -a /dev/stderr; } # usage: input|echo_stdin|cmd |
41 | 41 |
|
42 |
echo_vars () { declare -p "$@" >&2; } # usage: echo_vars var...
|
|
42 |
echo_vars () { declare -p "${@%%=*}" >&2; } # usage: echo_vars var...
|
|
43 | 43 |
|
44 | 44 |
echo_export () |
45 | 45 |
{ |
Also available in: Unified diff
bugfix: lib/util.run: echo_vars (): remove any value to set (=*) from the vars, since this is often used with export