source: MondoRescue/branches/2.2.9/mindi-busybox/shell/hush_test/hush-vars/param_subshell.tests@ 2725

Last change on this file since 2725 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
  • Property svn:executable set to *
File size: 311 bytes
Line 
1if test $# = 0; then
2 "$THIS_SH" "$0" 1 2 3 4 5 6 7 8 9
3 exit
4fi
5echo 1=$1
6{ echo 2=$2; }
7{ echo 3=$3; } &
8# cant use usleep as it isnt standard in $PATH --
9# we fail when testing busybox compiled solely as "hush"
10wait
11( echo 4=$4 )
12( echo 5=$5 ) &
13wait
14true | echo 6=$6 | cat
15true | { echo 7=$7; } | cat
Note: See TracBrowser for help on using the repository browser.