Search Code Snippets | command to clear terminal

PHOTO EMBED

Thu Apr 14 2022 17:09:07 GMT+0000 (Coordinated Universal Time)

Saved by @hck3r91 #whatever

clear               # only clear visible screen
clear && clear      # clear buffer as well
tput clear          # same as clear but by sending escape seq
reset               # clear + reset internal terminal state + 1sec delay
tput reset          # same as reset but without 1sec delay
stty sane           # don't clear screen but reset some terminal options
echo -e "\033c"     # same as tput reset but hardcoded escape seq
printf "\033c"      # same as tput reset but hardcoded escape seq
setterm -reset      # same as tput reset, setterm has friendlier commands 
cls    //Windows command prompt
clear   //Linux terminal
cls     //clean terminal only on windowsclear

clear   will clear the UBUNTU terminal
content_copyCOPY

https://www.codegrepper.com/search.php?q