15 lines
118 B
Bash
Executable file
15 lines
118 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function pre {
|
|
echo 'in pre';
|
|
}
|
|
|
|
function post {
|
|
echo 'in post';
|
|
}
|
|
|
|
function body {
|
|
echo 'in body';
|
|
}
|
|
|
|
|