Horje
macos clear terminal Code Example
macos clear terminal
clear && printf '\e[3J'
clear terminal
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




Shell

Related
error: failed to push some refs to 'http://gitlab.hiteshi.com/Web/RevTech-Angular.git' Code Example error: failed to push some refs to 'http://gitlab.hiteshi.com/Web/RevTech-Angular.git' Code Example
git update gitignore remove files Code Example git update gitignore remove files Code Example
kill mongo db locally Code Example kill mongo db locally Code Example
stack over flow mongodb exit code 48 Code Example stack over flow mongodb exit code 48 Code Example
add user with sudoer centos Code Example add user with sudoer centos Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10