Created
April 11, 2017 19:28
-
-
Save bidulock/89880bb7606c16092fba20eba19bb92b to your computer and use it in GitHub Desktop.
Blank a terminal screen
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
#!/bin/bash | |
# Ctrl-C to exit | |
# I use this by making a terminal full screen on a monitor and blanking it so I can focus on one monitor | |
trap "tput cnorm" EXIT INT TERM | |
tput civis; tput clear | |
sleep infinity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment