spcd_fill
This commit is contained in:
parent
cc96c1cd81
commit
6dcdf960c7
1 changed files with 8 additions and 0 deletions
|
@ -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}")"
|
||||
|
|
Loading…
Reference in a new issue