You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
247 B

#!/usr/bin/bash-strict
##!/usr/bin/env -S -- bash-strict
function f2 {
# return 6
# exit 7
unknown_command
echo $nope
}
function f1 {
f2
}
echo START TEST5
echo toto >>/tmp/toto
for i in "$@"; do
echo ARG: $i
done
f1
echo END TEST5