Created
March 22, 2023 13:14
-
-
Save victor-oliveira1/238fe5f114b08b730621b9c7cf20db67 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# String sequencer | |
# Example: ~$ ./strseq.sh BLA 3 | |
# BLABLABLA | |
STRING="${1}" | |
TIMES="${2}" | |
while read i; do | |
echo -ne "${STRING}" | |
done < <(seq "${TIMES}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment