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
271 B
20 lines
271 B
#!/usr/bin/env -S -- bash
|
|
|
|
## MAIN
|
|
. "lib/backtrace.bash"
|
|
|
|
function f1 {
|
|
echo START f1
|
|
# return 4
|
|
# echo $nope
|
|
unknown_command
|
|
# grep titi titi
|
|
# grep titi titi 2>/dev/null
|
|
# false
|
|
echo END F1
|
|
}
|
|
|
|
echo START test2
|
|
echo 'toto' >>/tmp/toto
|
|
f1
|
|
echo END test2
|