rwxrob-dot/scripts/echon
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

9 lines
111 B
Bash
Executable File

#!/usr/bin/env bash
echon () {
declare i
for ((i=0; i<${2:-1}; i++)); do echo -n "$1"; done
}
echon "$@"