Bsh/tests/functions/arguments_hard.sh

10 lines
92 B
Bash
Raw Permalink Normal View History

2022-02-08 17:50:03 +00:00
foo()
{
echo $@
}
foo arguments de la fonction
echo $@
foo "d'autres" arguments
exit 4