Linux积累命令

1、按时间删除文件
删除文件类型是file 60天以前的数据

find ./ -type f -mtime +60 -exec rm -rf {} \;

2、按时间统计文件

find ./ -type f -name "*" -newermt '2019-04-09 00:00:00' ! -newermt '2019-04-18 23:59:59' |wc -l

3、获取本机外网ip

 curl icanhazip.com
 curl ifconfig.me

4、kill 包含指定字符串的进程

 ps -ef | grep '字符串'|grep -v grep |awk -F " " '{print $2}' |xargs kill -9

你可能感兴趣的:(linux,linux命令积累)