Bsh/tests/functions/function_in_function.sh

11 lines
107 B
Bash

foo()
{
bar()
{
echo "bar"
echo $@
}
}
foo salut je suis un argument
bar salut