Files
Bsh/tests/case/case_in_function.sh
brice.boisson 7744ceaa33 bsh project
2022-02-08 18:50:03 +01:00

17 lines
176 B
Bash

fun()
{
case fun in
f)
echo nope;;
*)
echo nice;;
esac
}
case call in
call)
fun;;
c)
echo what?;;
esac