11 lines
116 B
Bash
Executable file
11 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function first_stage(){
|
|
echo foo first_stage
|
|
|
|
}
|
|
|
|
function second_stage(){
|
|
echo bar second_stage
|
|
|
|
}
|