Linux_Shell_脚本_删除nohup.out文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
我相信大家在用nohup 后台起线程的时候都会遇到这样一个问题,随着nohup运行次数的增加,会导致本机上有许多nohup.out 文件。
这些nohup.out 文件分散在系统的各个位置,会导致占用许多的空间,这里我写了一个脚本用来删除本机上的所有nohup.out 文件。
这只是个比较简单的shell 脚本,也可以编写更复杂的脚本:
如读取命令参数,参数比如 -i 为强制删除。不给参数, 则每删除一个nohup.out 的时候都给予提示。读到 y 删除,n 不删除当前 nohup.out 文件等。
这个大家自己补充,欢迎把写好的脚本贴在回复上。
脚本如下
#!/bin/bash
arr=(`find / -name nohup.out`)
if [ ${#arr[@]} == 0 ];then
echo "There is no file which name is nohup.out"
else
for((i=0; i<${#arr[@]}; i++))
do
echo "delete file name is "${arr[i]}
rm ${arr[i]}
done
echo 'have done!!!!'
fi
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献18条内容
所有评论(0)