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.
19 lines
202 B
19 lines
202 B
#!/usr/bin/bash-strict
|
|
##!/usr/bin/env -S -- bash-strict
|
|
|
|
function f2 {
|
|
|
|
unknown_command
|
|
echo $nope
|
|
}
|
|
|
|
function f1 {
|
|
f2
|
|
}
|
|
|
|
echo START TEST5
|
|
for i in "$@"; do
|
|
echo ARG: $i
|
|
done
|
|
f1
|
|
echo END TEST5
|