8 lines
54 B
Bash
8 lines
54 B
Bash
#!/bin/sh
|
|
|
|
function foobar() {
|
|
echo "foo!"
|
|
}
|
|
|
|
foobar
|