[root@jerrik gc]# df -h
文件系統(tǒng) 容量 已用 可用 已用% 掛載點
/dev/vda1 40G 3.9G 34G 11% /
devtmpfs 1.9G 0 1.9G 0% /dev
tmpfs 1.9G 716K 1.9G 1% /dev/shm
tmpfs 1.9G 280K 1.9G 1% /run
tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
tmpfs 380M 0 380M 0% /run/user/0
[root@jerrik /]# du -sh *
0 bin
154M boot
716K dev
32M etc
19M home
0 lib
0 lib64
16K lost+found
2.9G usr
495M var
...
find /usr/local/software/gc -name "*.log" -exec rm{} \;
find . -name "*.log"|xargs rm -rf {};
創(chuàng)建定時任務:
crontab -e
進入vim
然后鍵入:
* * * * * check.sh
:wq保存即可
如果要查看定時任務是否執(zhí)行,可以查看/var/log/cron中的執(zhí)行日志.
查看定時任務:
[root@jerrik software]# crontab -l
* * * * * echo "hello world"
* * * * * /usr/local/software/demo.sh
[root@jerrik software]#
#查看最近2分鐘之內沒有更新的文件
find . -cmin +2
#查找文件更新時間在距現(xiàn)在二天以內的文件
find ./ -mtime -2
#查找文件更新時間距現(xiàn)在二天以上的文件
find ./ -mtime +2
nohup [command] >/dev/null 2>&1 &
備注:
【/dev/null】: 是要把輸出重定向到空設備上
【2>&1】: 把標準錯誤2重定向到標準輸出中1中
【最后一個&】: 即后臺運行
[root@jerrik software]# top
top - 23:27:35 up 130 days, 1:04, 1 user, load average: 0.00, 0.01, 0.05
Tasks: 70 total, 1 running, 69 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0/0.0 0[ ]
KiB Mem : 3881920 total, 2087416 free, 350412 used, 1444092 buff/cache
KiB Swap: 0 total, 0 free, 0 used. 3237956 avail Mem
上一個教程:復制命令 linux
下一個教程:Linux sed命令使用簡單示例