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.
 
 
 

28 lines
325 B

#!/bin/bash
function F2 {
echo "stdout A"
# echo toto >>/tmp/toto
>&2 echo "This is stderr"
blabla
exit 6
grep titi toto
$nope
echo "stdout B"
echo "stdout C"
# command_not_found
}
function F1 {
echo F1
F2
}
function main {
F1
}
. lib/utility.bash
echo start of useless
main
echo end of useless