mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
9 lines
111 B
Bash
Executable File
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 "$@"
|