查找文件: 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
解压到当前目录:unzip test.zip
解压到指定目录/usr/local:unzip test.zip -d /usr/local
cron有两个配置文件
一个是一个全局配置文件(/etc/crontab),是针对系统任务的,打开使用vim /etc/crontab一组是crontab命令生成的配置文件(/var/spool/cron下的文件),是针对某个用户的.定时任务配置到任意一个中都可以。打开方式:vim /var/spool/cron/root或crontab -e
查看当前用户的定时任务:crontab -l
下面列举几个例子供大家参考
0 1 * * * /home/testuser/test.sh
每天晚上1点调用/home/testuser/test.sh
*/10 * * * * /home/testuser/test.sh
每10钟调用一次/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
每半小时同步一下时间
…
关于 >/dev/null 2>&1 的解释:
0表示键盘输入
1表示标准输出
2表示错误输出.
我们首先创建test.sh脚本如下:
#! /bin/sh
echo "hello, everybody, now is " `date`
date >> test.txt
上一个教程:Linux命令总结(一)
下一个教程:Linux常用命令之查看版本