#!/bin/sh
while true
do
rm -f /home/saving/log/*
sleep 3600
done
通过shell脚本定期删除linux用户下的日志
最新推荐文章于 2022-04-28 20:39:47 发布
#!/bin/sh
while true
do
rm -f /home/saving/log/*
sleep 3600
done