Skip to content

Instantly share code, notes, and snippets.

@bitmvr
Created July 1, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitmvr/1f13b98bd7a25c5e6f740a287fc72f44 to your computer and use it in GitHub Desktop.
Save bitmvr/1f13b98bd7a25c5e6f740a287fc72f44 to your computer and use it in GitHub Desktop.
Banner Creation Function
#!/usr/bin/env bash
function mkBanner() {
for i in $(eval echo {1..$2}); do
printf $1
done
echo ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment