
shell
木一亢
这个作者很懒,什么都没留下…
展开
-
Centos7开机自动启动shell脚本
1.vi /etc/rc.d/rc.local2.末尾添加sh脚本3.检查脚本和rc.local权限是否可执行4.rebot检查原创 2021-06-28 13:17:09 · 373 阅读 · 0 评论 -
日志文件清理shell
#!/bin/sh list_alldir(){ for file2 in `ls -a $1` do if [ x"$file2" != x"." -a x"$file2" != x".." ];then if [ -d "$1/$file2" ];then find "$1/$file2" -mtime +1 -name "*.log*" -exec rm -rf {} \;原创 2021-06-23 13:25:12 · 231 阅读 · 0 评论