DEBIAN
changes
doc
check_config
source_var
Error_Liste.txt
Server Bedienung.odt
Server Bedienung.pdf
Strukture.md
buid_vars.md
draft_mod-pronects
lib-head+tail
notes
proj-head
script
src
.gitignore
LICENSE
README.md
autogen.sh
14 lines
229 B
Bash
14 lines
229 B
Bash
#!/bin/bash
|
|
#remaster lib
|
|
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
|
|
|
|
#<function> [param]
|
|
function <function>() {
|
|
#Code of <function>
|
|
}
|
|
|
|
#this func is standalone executable
|
|
[ -n "$1" ] && {
|
|
<function> $@
|
|
}
|