Revision 8881
Added by Aaron Marcuse-Kubitza over 11 years ago
run | ||
---|---|---|
7 | 7 |
|
8 | 8 |
import () |
9 | 9 |
{ |
10 |
echo_func "$@"
|
|
10 |
echo_func |
|
11 | 11 |
fwd "$FUNCNAME" "$@" |
12 | 12 |
} |
13 | 13 |
|
Also available in: Unified diff
*{.sh,run}: changed echo_func to an alias that includes the "$
", so that callers don't need to specify the "$
" manually. although the original echo_func function is still there, callers need to switch over to the alias at the same time as it's defined because otherwise the "$@" would be doubled, since echo_func refers to the alias instead.