linux history格式设置
2022/1/17 7:04:16
本文主要是介绍linux history格式设置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在/etc/profile中加入以下脚本
#history USER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'` HISTDIR=/usr/share/.history 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=4000000 DT=`date +%Y%m%d_%H%M%S` export HISTFILE="$HISTDIR/${LOGNAME}/${USER_IP}.history.$DT" export HISTTIMEFORMAT="[%Y.%m.%d %H:%M:%S]" chmod 600 $HISTDIR/${LOGNAME}/*.history* 2>/dev/null
在/etc/bashrc中加入几个环境变量,用于history命令显示用户ip等内容
#history USER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'` HISTFILESIZE=4000 HISTSIZE=4000 HISTTIMEFORMAT="%F %T ${USER_IP} `whoami` " export HISTTIMEFORMAT
最终效果
27 2021-10-08 10:17:19 10.211.130.22 root history 28 2021-10-08 10:17:40 10.211.130.22 root date 29 2021-10-08 10:17:47 10.211.130.22 root ls 30 2021-10-08 10:17:51 10.211.130.22 root cat /etc/profile 31 2021-10-08 10:18:25 10.211.130.22 root vim /etc/bashrc 32 2021-10-08 10:18:40 10.211.130.22 root source /etc/bashrc 33 2021-10-08 10:18:42 10.211.130.22 root history 34 2021-10-08 10:20:12 10.211.130.22 root c;ear 35 2021-10-08 10:20:13 10.211.130.22 root clear 36 2021-10-08 10:20:31 10.211.130.22 root cat /etc/profile 37 2021-10-08 10:22:24 10.211.130.22 root history
这篇关于linux history格式设置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南