ubuntu下crontab编辑方法的设定
Choose 1-4 [2]: 3 //选择3即可!
再次编辑crontab,就会进入vim编辑模式了。
[root@wang ~]# crontab -e
===============ubuntu16.04里面清除垃圾空间办法=================
1
2
3
4
5
6
7
8
9
10
11
12
root@bobo:~
# cat /root/cache_del.sh
#!/bin/bash
rm
-rf
/var/cache/apt/archives/
*
apt-get autoclean
apt-get autoremove
rm
-rf
/home/kevin/
.cache/*
每1小时清除一次
root@bobo:~
# crontab -l
0 * * * *
/bin/bash
-x
/root/cache_del
.sh >
/dev/null
2>&1
以上是 ubuntu下crontab编辑方法的设定 的全部内容, 来源链接: utcz.com/z/513946.html