SHELL有用的命令

[root@gechong /]# find / -name "gechong*" -print

[root@gechong /]# find / -name "[A-Z]*" -print

[root@gechong /]# find / -perm 755 -print

[root@gechong /]# find / -name gechong -print

查看HOME目录所有内容

[root@gechong ~]# find $HOME -print

[root@gechong ~]# find ~ -print

原文地址:https://www.cnblogs.com/xiaoit/p/3404951.html