TIL: Clearing the terminal screen
2023-02-10
- terminal
printf '\033[2J'
clears the screen. Use double buffering to avoid flicker: https://unix.stackexchange.com/a/126153
printf '\033[2J'
clears the screen. Use double buffering to avoid flicker: https://unix.stackexchange.com/a/126153