10 lines
92 B
Bash
10 lines
92 B
Bash
|
foo()
|
||
|
{
|
||
|
echo $@
|
||
|
}
|
||
|
|
||
|
foo arguments de la fonction
|
||
|
echo $@
|
||
|
foo "d'autres" arguments
|
||
|
exit 4
|