10 lines
142 B
Bash
Executable file
10 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function first_stage(){
|
|
echo foo first_stage
|
|
echo mount divice to $TARGET
|
|
}
|
|
|
|
function second_stage(){
|
|
echo bar second_stage
|
|
}
|