-
-
Save cmawhorter/5126609 to your computer and use it in GitHub Desktop.
Simple shell script to output a number of blank lines. Defaults to 30.
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 | |
# usage: `spc` or `spc [number of lines]` | |
lines=${1:-30} | |
for ((i=1; i<=$lines; i++)) | |
do | |
echo | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment