spcd_fill
This commit is contained in:
parent
35123c72c1
commit
21b91211ec
1 changed files with 8 additions and 8 deletions
16
spcd/main.sh
16
spcd/main.sh
|
@ -875,14 +875,6 @@ spcd_error_os() {
|
|||
exit "${SPCD_ERROR_OS}"
|
||||
}
|
||||
|
||||
spcd_fill() {
|
||||
spcd_fill__index=${1}
|
||||
while [ "${spcd_fill__index}" -gt 0 ]; do
|
||||
printf "%s" "${2}"
|
||||
spcd_fill__index=$((spcd_fill__index - 1))
|
||||
done
|
||||
}
|
||||
|
||||
spcd_git_clone() {
|
||||
if [ -n "${1}" ]; then
|
||||
spcd_gc__name="$(basename "${1}")"
|
||||
|
@ -1067,6 +1059,14 @@ SPCD_SHUT="${SPCD_BOX_UP}${SPCD_BOX_LEFT}"
|
|||
# │ internal │
|
||||
# ╰──────────╯
|
||||
|
||||
spcd_fill() {
|
||||
spcd_fill__index=${1}
|
||||
while [ "${spcd_fill__index}" -gt 0 ]; do
|
||||
printf "%s" "${2}"
|
||||
spcd_fill__index=$((spcd_fill__index - 1))
|
||||
done
|
||||
}
|
||||
|
||||
# ╭──────────┬────────╮
|
||||
# │ internal │ banner │
|
||||
# ╰──────────┴────────╯
|
||||
|
|
Loading…
Reference in a new issue