diff --git a/spcd/main.sh b/spcd/main.sh index 1e7f9d2..d4ce405 100644 --- a/spcd/main.sh +++ b/spcd/main.sh @@ -865,6 +865,14 @@ spcd_error_os() { exit "${SPCD_ERROR_OS}" } +spcd_fill() { + spcd_fill__index=${1} + while [ ${spcd_fill__index} -gt 0 ]; do + printf "${2}" + spcd_fill__index=$((spcd_fill__index - 1)) + done +} + spcd_git_clone() { if [ -n "${1}" ]; then spcd_gc__name="$(basename "${1}")"