Clarify wordings (usage of sequencer and sequence (seq))

This commit is contained in:
2019-04-05 13:45:20 +01:00
parent fbaba8f777
commit 09f082a83f
3 changed files with 9 additions and 9 deletions

45
seqTemplate.sh Normal file
View File

@@ -0,0 +1,45 @@
#!/bin/bash
##
## Sequencer interface:
## - step_[1 - 255]_info [STEP NUMBER]
## functions providing short header for help and user interaction
## - step_[1 - 255] [STEP NUMBER]
## functions performing custom operations
##
step_1_info() { echo "Step $1 header"; }
step_1() {
cat .nofile
saveReturn $?
}
step_2_info() { echo "Step $1 header"; }
step_2() {
echo -e "Zwei"
endReturn
echo zwo
}
step_3_info() { echo "Step $1 header"; }
step_3() {
echo -e "Drei"
echo drei
}
step_10_info() { echo "Step $1 header"; }
step_10() {
echo -e "Zehn"
echo zehn
}
step_11_info() { echo "Step $1 header"; }
step_11() {
echo -e"Elf"
echo elf
}
#
## Path to local sequencer.sh script
. ./sequencer/sequencer.sh