16 lines
383 B
Bash
16 lines
383 B
Bash
# -*- mode: Shell-script -*-
|
|
# name:add-section
|
|
# key:adds
|
|
# --
|
|
#############################################################
|
|
# 1 - STEP NAME
|
|
#############################################################
|
|
${3:my_func}() {
|
|
local step_name='STEP ${1:1} ${2:STEP NAME}'
|
|
warn "Press enter to proceed with $step_name"; read
|
|
info "$step_name"
|
|
|
|
$0
|
|
|
|
info "done"
|
|
} |