source: MondoRescue/branches/3.3/mindi-busybox/shell/hush_test/hush-misc/func_args1.tests@ 3621

Last change on this file since 3621 was 3621, checked in by Bruno Cornec, 7 years ago

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

  • Property svn:executable set to *
File size: 145 bytes
Line 
1f() { echo "'f $1 $2 $3' called"; }
2
3set -- a b c
4echo "params: $1 $2 $3"
5f 1 2 3
6echo "params: $1 $2 $3"
7true | f 1 2 3
8echo "params: $1 $2 $3"
Note: See TracBrowser for help on using the repository browser.