主角
- 管理员
- 管道
- Cron 守护进程
- 一堆文本处理工具
- 网络统计
>>
文士
环境
Cron 守护进程反复执行相同的工作,他强迫无辜者netstat
显示网络状态 ( netstat -n
)。然后管道必须获取信息并将其传递给旁边的文本处理实用程序 ( | grep tcp | awk '{ print $5 }' | cut -d "." -f-4
)。>>
必须将重要结果记录到文件中。管理员殿下是个懒惰易怒的统治者,>>
只想将新信息写入文件。
*/1 * * * * netstat -n | grep tcp | awk '{ print $5 }' | cut -d "." -f-4 >> /tmp/file
独白>>
To append, or not append, that is the question:
Whether 'tis new information to bother The Admin with
and earn an outrageous Fortune,
Or to take Arms against `netstat` and the others,
And by opposing, ignore them? To die: to sleep;
出版商注意事项:对于所有在理解哈姆雷特时遇到问题的人,就像我一样,问题是,我如何检查字符串是否已包含在文件中,如果没有,将其附加到文件中?