Linux开启同步history记录到指定文件
Posted shangshanyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux开启同步history记录到指定文件相关的知识,希望对你有一定的参考价值。
[root@node1 tmp]# vi /etc/profile
export PROMPT_COMMAND=‘{ msg=$(history 1 | { read x y; echo $y; });echo "[euid=$(whoami)]":$(who am i):[`pwd`]#"$msg" >>/tmp/history_cmd.log; }‘
[root@node1 tmp]# . /etc/profile
[root@node1 tmp]# chmod 777 history_cmd.log
[root@node1 tmp]# chattr +a history_cmd.log
以上是关于Linux开启同步history记录到指定文件的主要内容,如果未能解决你的问题,请参考以下文章