history歷史命令清除

2021-10-08 03:23:24 字數 432 閱讀 7828

歷史命令清除特定的命令:

私人測試:

1、建議不要在有審計桌面執行

2、建議在本地無審計監控桌面執行

重新登入後也是隨便用vim開啟乙個檔案,如vim /var/log/messages

然後再用vim的分屏功能開啟.bash_history

:set history=0

:vsp ~/.bash_history

然後就可以在裡面編輯.bash_history刪除歷史命令

一般刪除的都是2行,一行注釋,一行命令

弄完可以再把vim的歷史命令記錄調回去。

:set history=20

最後儲存退出即可

不建議隨便使用此方法操作,建議在操作敏感命令前再三確認

如:mv、rm、chown -r 、shutdown -r/h、last | halt 等

history命令歷史

history我不用多說了吧,這個命令就是看你在當前使用者下所有執行的命令歷史 預設命令歷史儲存為1000條 可用echo histsize檢視,系統使用者可以在 etc profile或者普通使用者.bash profile下修改引數 histsize 200000 隨你改 最後source et...

Linux檢視歷史命令 history

root linux history n root linux history c root linux history raw histfiles 引數 n 數字,意思是 要列出最近的 n 筆命令列表 的意思!c 將目前的 shell 中的所有 history 內容全部消除 a 將目前新增的 hi...

linux檢視歷史命令history

linux的history命令的作用是,記錄執行過的命令。用法 history n n為數字,列出最近的n條命令 c 將目前shell中的所有history命令消除 history raw histfiles a 將目前新增的命令寫入histfiles,預設寫入 bash history r 將hi...