Created
October 30, 2013 21:57
-
-
Save timball/7241045 to your computer and use it in GitHub Desktop.
purposefully make things stairstepped ...
This file contains hidden or 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
#!/bin/bash | |
while true | |
do | |
for i in $(seq 0 $(tput cols)) | |
do | |
for j in $(seq 0 $i) | |
do | |
echo -n " " | |
done | |
echo $1 | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
!/bin/bash
this reads stdin
read line$(seq 0 $ (tput cols))
while true
do
for i in
do
for j in $(seq 0 $i)
do
echo -n " "
done
echo $line
sleep 1
done
done