查找文件: find / -name “maven”
查找目錄: find / -name “maven” -type d
刪除所有包含gitlab文件:find / -name gitlab | xargs rm -rf
rpm -qa|grep 軟件包名
如:rpm -qa|grep ssh
ps:查看安裝目錄在哪:rpm -ql xxx(前面使用rpm -qa列出的軟件包名)
將test文件壓縮為名為test.zip
zip -q -r test.zip test
解壓到當(dāng)前目錄:unzip test.zip
解壓到指定目錄/usr/local:unzip test.zip -d /usr/local
cron有兩個配置文件
一個是一個全局配置文件(/etc/crontab),是針對系統(tǒng)任務(wù)的,打開使用vim /etc/crontab一組是crontab命令生成的配置文件(/var/spool/cron下的文件),是針對某個用戶的.定時任務(wù)配置到任意一個中都可以。打開方式:vim /var/spool/cron/root或crontab -e
查看當(dāng)前用戶的定時任務(wù):crontab -l
下面列舉幾個例子供大家參考
0 1 * * * /home/testuser/test.sh
每天晚上1點調(diào)用/home/testuser/test.sh
*/10 * * * * /home/testuser/test.sh
每10鐘調(diào)用一次/home/testuser/test.sh
30 21 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每晚的21:30重啟apache。
45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每月1、10、22日的4 : 45重啟apache。
10 1 * * 6,0 /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每周六、周日的1 : 10重啟apache。
0,30 18-23 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示在每天18 : 00至23 : 00之間每隔30分鐘重啟apache。
0 23 * * 6 /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每星期六的11 : 00 pm重啟apache。
* */1 * * * /usr/local/etc/rc.d/lighttpd restart
每一小時重啟apache
* 23-7/1 * * * /usr/local/etc/rc.d/lighttpd restart
晚上11點到早上7點之間,每隔一小時重啟apache
0 11 4 * mon-wed /usr/local/etc/rc.d/lighttpd restart
每月的4號與每周一到周三的11點重啟apache
0 4 1 jan * /usr/local/etc/rc.d/lighttpd restart
一月一號的4點重啟apache
*/30 * * * * /usr/sbin/ntpdate 210.72.145.44
每半小時同步一下時間
…
關(guān)于 >/dev/null 2>&1 的解釋:
0表示鍵盤輸入
1表示標(biāo)準(zhǔn)輸出
2表示錯誤輸出.
我們首先創(chuàng)建test.sh腳本如下:
#! /bin/sh
echo "hello, everybody, now is " `date`
date >> test.txt
上一個教程:Linux命令總結(jié)(一)
下一個教程:Linux常用命令之查看版本