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.
 
 
 

18 lines
223 B

#!/usr/bin/env -S -- bash
## MAIN
. "lib/backtrace.bash"
function f1 {
echo START f1
# return 4
# echo $nope
grep titi titi
grep titi titi 2>/dev/null
false
echo END F1
}
echo START test2
f1
echo END test2