Linux题目-2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux题目-2相关的知识,希望对你有一定的参考价值。
【删除15天以前的日志文件】
试验环境模拟:
for n in `seq 30`;
do date -s "2018-07-$n";
touch access_xwj_$(date +%F).log; ——注意: date 和 + 之间有空格
done
脚本的意义:创建20180701~20180730号的日志文件
三种删除方式
1、[[email protected] ~]# find /xwj/log -type f -mtime +15 -exec rm -f {} ;
2、[[email protected] ~]# find /xwj/log -type f -mtime +15 | xargs rm -f
3、[[email protected] ~]# rm -f `find /xwj/log -type f -mtime +15`
【调试系统服务时,希望实时看到日志文件的变化 /var/log/messages】
tail -f output appended data as the file grows; -f,
--follow, and --follow=descriptor are equivalent
[[email protected] ~]# tail -f /var/log/messages
【打印配置文件,显示行号】
生成实验环境
方法一:
[[email protected] ~]# cat -n xwj.txt (空行也显示行号)
方法二:
[[email protected] ~]# grep -n . xwj.txt (点代表任意一个字符)
方法三:
vi 编辑器
命令模式 :set nu
方法四:
[[email protected] ~]# awk '{print NR,$0}' xwj.txt (NR代表行号,$0代表每一行)
方法五:
[[email protected] ~]# less -N xwj.txt
以上是关于Linux题目-2的主要内容,如果未能解决你的问题,请参考以下文章