Linux 常用命令(1)

清屏 :CTRL + l /clear
软连接:ln -s [原文件] [目标文件] 类似windows的快捷方式
ln -s /root/cxxxx /root/cang/
文件搜索命令:locate

root@224570:~# locate 2016-1
/root/blog/.deploy_git/2016/01/19/2016-1-19
/root/blog/.deploy_git/2016/01/19/2016-1-19/index.html
/root/blog/public/2016/01/19/2016-1-19
/root/blog/public/2016/01/19/2016-1-19/index.html
/root/blog/source/_posts/2016-1-18.md
/root/blog/source/_posts/2016-1-19.md

注意:新建的文件 会搜索不到,需要updatedb 才行
查看updatedb.conf文件 满足下面的规则 都不进行搜索

root@224570:~# locate updatedb
/etc/updatedb.conf
enter description here

命令搜查命令:whereis which

root@224570:~# whereis whereis
whereis: /usr/bin/whereis
/usr/bin/X11/whereis
/usr/share/man/man1/whereis.1.gz

root@224570:~# which which
/usr/bin/which
root@224570:~#

find命令
find是完全匹配,系统开销较大。

通配符

, ?, []
find / ‘
.log’
find / ‘ab?.log’
find / ‘ab[dc]*.log’ 只包含d/b的

-iname 不区分大小

find / -nouser 查找没有所有者的文件(存在于sys、proc文件中)

find / -size 中文件大小的k要小写,M要大写,很变态

find / -inum根据节点号查找

find /etc -size 20k -a -size 50k -exec/*前面结果交给后面处理*/ ls -lh {}\;(符号为固定格式)

root@224570:~# find /etc -size +20k -a -size -40k
/etc/mime.types
/etc/apache2/magic
/etc/init.d/sendmail
/etc/dnsmasq.conf

root@224570:~# find /etc -size +20k -a -size -40k -exec ls -lh {} \;
-rw-r–r– 1 root root 24K Nov 15 2010 /etc/mime.types
-rw-r–r– 1 root root 31K Feb 6 2012 /etc/apache2/magic
-rwxr-xr-x 1 root root 33K Sep 19 2013 /etc/init.d/sendmail
-rw-r–r– 1 root root 23K Nov 24 08:42 /etc/dnsmasq.conf

grep命令
grep [-v/i] “wanted string” file_name

[work@iZ23xtjojg3Z logs]$ grep '2016-01-20 10:57:2[234],*' catalina.out

-v 取反
-i 不区分大小写

通配符

*, ?, []