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.
20 lines
210 B
20 lines
210 B
#!./bin/bash-strict
|
|
|
|
function f2 {
|
|
# return 6
|
|
# exit 7
|
|
echo $nope
|
|
unknown_command
|
|
}
|
|
|
|
function f1 {
|
|
f2
|
|
}
|
|
|
|
echo START TEST5
|
|
echo toto >>/tmp/toto
|
|
for i in "$@"; do
|
|
echo ARG: $i
|
|
done
|
|
f1
|
|
echo END TEST5
|