1 Star 2 Fork 1

hxsaj/tools_shell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
watch_stack.sh 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
gohou 提交于 2024-01-31 20:53 . 新修改删除共享的函数
#!/bin/bash
while :
do
size=$(du -sm /var/log/abc.log 2>/dev/null | awk '{print $1}')
if (( size > 100 ))
then
mv -f /var/log/abc.log /var/log/abc.log.1
fi
date >> /var/log/abc.log
ps -eLo 'tid,stat,pid,comm,pcpu,psr,wchan' >> /var/log/abc.log
grep -s '.*' /proc/*/task/*/stack >> /var/log/abc.log
sleep 2
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/hxsaj/tools_shell.git
git@gitee.com:hxsaj/tools_shell.git
hxsaj
tools_shell
tools_shell
master

搜索帮助