Last active
January 22, 2018 12:19
-
-
Save PaulChana/a37f16bbc6e536ea23f3e7a460cca408 to your computer and use it in GitHub Desktop.
[Bash cursors] Show hide bash cursors #bash #shell
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
showCursor() | |
{ | |
tput cnorm | |
} | |
hideCursor() | |
{ | |
tput civis | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment