remaster/src/func/check_config

14 lines
221 B
Plaintext
Raw Normal View History

2018-05-20 19:02:45 +00:00
#!/bin/bash
#remaster lib
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
#<function>
function <function>() {
#Code of <function>
}
#this func is standalone executable
[ -n "$1" ] && {
<function> $@
}