Skip to content

Instantly share code, notes, and snippets.

@mckern
Created June 4, 2016 09:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mckern/bf1bc2cc58f036fdd57c2188de1e93be to your computer and use it in GitHub Desktop.
Save mckern/bf1bc2cc58f036fdd57c2188de1e93be to your computer and use it in GitHub Desktop.
#!/bin/bash
whitespace() {
local character="${1}"
local quantity="${2:-$LINES}"
for line in $(seq 1 ${quantity}); do
printf "%s\n" "${character}"
done
return $?
}
alias ws=whitespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment