一个简单的方法
- 编写shell脚本
#! /bin/bash while[true]; do /bin/sleep 1 netstat -n|grep 783 >> /usr/local/scripts/873.log done
- 放入后台执行
/usr/local/srcipts/grep783.sh &
- 使用tail -f命令跟踪日志
更强大的方法: 设置定时任务
- 找到文件夹
cd /var/spool/cron
- 查看定时任务
crontab -l
- 编辑定时任务
vi root
- 时间格式 ``` 分钟 小时 日期 月份 周 命令
数字范围 0-59 0-23 1-31 1-12 0-7 echo “hello” » abc.log
特殊字符的含义
*(星号) 代表任何时刻都接受。
,(逗号) 代表分隔时段的意思。
-(减号) 代表一段时间范围内。
/n(斜线) 那个 n 代表数字,每隔 n 单位间隔。
eg1: 每年的五月一日 10:5 执行一次
5 10 1 5 * command(要是执行网址(curl “http://网址”),或者执行其它的直接写路径)
eg2: 每天的三点,六点各执行一次
00 3,6 * * * command
eg3: 每天的8:20, 9:20,10:20,11:20各执行一次
20 8-11 * * * command
eg4: 每五分钟执行一次
*/5 * * * * command
eg5: 每周一十点执行一次
00 10 * * 1 command
5. 重新启动
service crond restart ```