用来记录登录后使用命令的shell脚本

Elsa ·
更新时间:2024-11-14
· 523 次阅读

代码如下:
#/bin/bash
# history
#把以下代码直接粘贴到/etc/profile后
USER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'`
HISTDIR=/var/log/.hist
if [ -z $USER_IP  ]
then
  USER_IP=`hostname`
fi
if [ ! -d $HISTDIR ]
then
   mkdir -p $HISTDIR
   chmod 777 $HISTDIR
fi
if [ ! -d $HISTDIR/${LOGNAME} ]
then
    mkdir -p $HISTDIR/${LOGNAME}
    chmod 300 $HISTDIR/${LOGNAME}
fi
export HISTSIZE=4096
DT=`date +%Y%m%d_%H%M%S`
export HISTFILE="$HISTDIR/${LOGNAME}/${USER_IP}.hist.$DT"
chmod 600 $HISTDIR/${LOGNAME}/*.hist* 2>/dev/null
您可能感兴趣的文章:linux中 shell 历史命令记录功能PowerShell小技巧之定时记录操作系统行为shell将脚本输出结果记录到日志文件的实现PowerShell时间记录脚本Powershell小技巧之记录脚本的操作Powershell小技巧之用变量累积记录错误shell如何记录用户的IP与命令详解



需要 登录 后方可回复, 如果你还没有账号请 注册新账号