Bsh/tests/subshells/fun_in_subshell.sh

8 lines
79 B
Bash
Raw Normal View History

2022-02-08 17:50:03 +00:00
fun()
{
echo "First fun"
}
(fun; fun() { echo "Second fun"; }; fun;)
fun;