大家平时工作中用到 shell 了么,一般都用来做哪儿些呢~写哪些脚本呢
线上分析问题
分析日志,统计日志的多吧
日志分析、版本发布脚本,自动化调用任务等等;
#!/bin/sh while true do time=$(date "+%Y-%m-%d %H:%M:%S") echo "${time}" >> cpu_mem.txt top -b -n 1 |grep -E "CPU:|Mem:" >> cpu_mem.txt sleep 1 done
用来监控 cpu memory