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
|
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
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
err() {
|
source lib/util
|
||||||
printf '%s\n' "$*" >&2
|
|
||||||
}
|
|
||||||
|
|
||||||
msg() {
|
|
||||||
printf '%s\n' "$*"
|
|
||||||
}
|
|
||||||
|
|
||||||
set_default() {
|
|
||||||
declare -n _vref=$1
|
|
||||||
|
|
||||||
if ! [[ "$_vref" ]]; then
|
|
||||||
_vref=$2
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
gen_san_string() {
|
gen_san_string() {
|
||||||
declare d
|
declare d
|
||||||
|
|
16
sub/renew
16
sub/renew
|
@ -1,20 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
err() {
|
source lib/util
|
||||||
printf '%s\n' "$*" >&2
|
|
||||||
}
|
|
||||||
|
|
||||||
msg() {
|
|
||||||
printf '%s\n' "$*"
|
|
||||||
}
|
|
||||||
|
|
||||||
set_default() {
|
|
||||||
declare -n _vref=$1
|
|
||||||
|
|
||||||
if ! [[ "$_vref" ]]; then
|
|
||||||
_vref=$2
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
while read -r line; do printf '%s\n' "$line"; done <<- EOF
|
while read -r line; do printf '%s\n' "$line"; done <<- EOF
|
||||||
|
|
Loading…
Reference in New Issue
Block a user