remaster/doc/lib-head+tail

14 lines
229 B
Plaintext
Raw Normal View History

2018-04-30 18:12:45 +02:00
#!/bin/bash
#remaster lib
2018-05-08 00:28:32 +02:00
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
2018-04-30 18:12:45 +02:00
2018-05-20 21:16:19 +02:00
#<function> [param]
function <function>() {
#Code of <function>
}
2018-05-13 00:02:09 +02:00
#this func is standalone executable
[ -n "$1" ] && {
2018-05-20 21:16:19 +02:00
<function> $@
2018-05-13 00:02:09 +02:00
}