10 lines
82 B
Bash
10 lines
82 B
Bash
foo()
|
|
{
|
|
echo "this is a test"
|
|
echo $@
|
|
}
|
|
|
|
foo salut
|
|
foo
|
|
foo foo foo; foo a
|