Created
July 13, 2019 18:02
-
-
Save DerBunman/f7807d6c02b29aa28c004b192bafecd7 to your computer and use it in GitHub Desktop.
sticky header test
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 zsh | |
#trap 'tput csr 0 "$((LINES-1))"' INT | |
tput csr "2" "$((LINES-1))" | |
tput clear | |
echo CORNERTEXT | |
echo ${(r:${COLUMNS}::=:)${}} | |
tput rc | |
for i in {1..200}; do | |
tput sc | |
tput cup 0 0 | |
echo "ROUND $i ....." | |
tput rc | |
ls | |
sleep .1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment