I want to clearscreen from bash in a cygwin terminal. I have tried
cmd /c cls echo -e \"^V^L\" echo -e \"\\014\"
None of these work - they all
There is two ways:
Using shortcuts
Alt+F8 to clear screen and Ctrl-L to skip page
Alt+F8
Ctrl-L
Using Clear alias
Clear
cygwin\home\USER\.bashrc
.bashrc
alias clear='printf "\033c"'
clear