在history命令歷史中增加執行的時間

2022-06-21 03:06:12 字數 1152 閱讀 2720

history命令可以顯示執行過的命令,我們還讓history命令顯示執行的時間。

將export histtimeformat='%f %t '命令放入家目錄的.bash_profile中後,再用source命令更新.bash_profile檔案或重新啟動系統後就可以在history命令看到執行的時間了。

需要注意:%t後面需要留個空格,不然後就會與執行的命令連在一起了,看上去不美觀。

詳細的操作請看下面的命令:

[root@centos7 ~]# history

1history

2 history -w

3 shutdown -r now

4history

[root@centos7 ~]# echo

"export histtimeformat='%f %t '

" >>.bash_profile

[root@centos7 ~]# source .bash_profile

[root@centos7 ~]# history

12021-01-31

21:28:03

history

22021-01-31

21:28:03 history -w

32021-01-31

21:28:03 shutdown -r now

42021-01-31

21:28:06

history

52021-01-31

21:29:21

echo

"export histtimeformat='%f %t '>> .bash_profile

62021-01-31

21:29:37

echo

"export histtimeformat='%f %t ' >> .bash_profile

72021-01-31

21:29:50

echo

"export histtimeformat='%f %t '

" >>.bash_profile

82021-01-31

21:30:02

source .bash_profile

92021-01-31

21:30:11 history

history命令歷史

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

history歷史命令清除

歷史命令清除特定的命令 私人測試 1 建議不要在有審計桌面執行 2 建議在本地無審計監控桌面執行 重新登入後也是隨便用vim開啟乙個檔案,如vim var log messages 然後再用vim的分屏功能開啟.bash history set history 0 vsp bash history ...

Linux檢視歷史命令 history

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