หน้า 1 จากทั้งหมด 1

Delete terminal history in Linux

โพสต์: ศุกร์ 08 ก.ค. 2016 07:24
โดย slwt2002
You can clear your bash history like this:

โค้ด: เลือกทั้งหมด

cat /dev/null > ~/.bash_history && history -c && exit

โค้ด: เลือกทั้งหมด

cat /dev/null > ~/.bash_history
erases the content of the

โค้ด: เลือกทั้งหมด

~/.bash_history
file.

โค้ด: เลือกทั้งหมด

history -c
clears the current terminal history.