restructure
Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
parent
495175cd96
commit
5bdc873d47
2
le
2
le
|
@ -2,4 +2,4 @@
|
|||
|
||||
subcommand=$1; shift
|
||||
|
||||
source "sub/$subcommand" "$@"
|
||||
"sub/$subcommand" "$@"
|
||||
|
|
17
lib/util
Normal file
17
lib/util
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!syntax bash
|
||||
|
||||
err() {
|
||||
printf '%s\n' "$*" >&2
|
||||
}
|
||||
|
||||
msg() {
|
||||
printf '%s\n' "$*"
|
||||
}
|
||||
|
||||
set_default() {
|
||||
declare -n _vref=$1
|
||||
|
||||
if ! [[ "$_vref" ]]; then
|
||||
_vref=$2
|
||||
fi
|
||||
}
|
16
sub/issue
16
sub/issue
|
@ -1,20 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
err() {
|
||||
printf '%s\n' "$*" >&2
|
||||
}
|
||||
|
||||
msg() {
|
||||
printf '%s\n' "$*"
|
||||
}
|
||||
|
||||
set_default() {
|
||||
declare -n _vref=$1
|
||||
|
||||
if ! [[ "$_vref" ]]; then
|
||||
_vref=$2
|
||||
fi
|
||||
}
|
||||
source lib/util
|
||||
|
||||
gen_san_string() {
|
||||
declare d
|
||||
|
|
Loading…
Reference in New Issue
Block a user