Clear all history
history -c clear all history
history -d 7 clear history line #7
Search history
history | grep test
1001 vim test.txt
1002 history | grep test
Turn off/on history
vim .bash_profile vim .bashrc
HISTSIZE=0 turn off history
export HISTSIZE=1000 turn on history
Clear all history even after re-login
vim .bash_history
gg move up to the first line
dG delete from first to last line
'개발 > docker' 카테고리의 다른 글
도커 명령어(Container) (4) | 2024.09.04 |
---|---|
도커 명령어(Docker ps) (0) | 2024.09.04 |
Docker 컨테이너 log 실시간 확인하는 방법 (0) | 2024.08.05 |