1.find
[[email protected] tem]# find /etc -name init*(全通配符)
[[email protected] tem]# find /etc -name init???(单个字通配符)
/etc/inittab
(区分大小写)
-iname(不区分大小写);
[[email protected] tem]# find /etc -name init???
/etc/inittab
[[email protected] tem]# find /etc -iname init???
/etc/inittab
/etc/INITTAB
(注意:服务器高峰期不能用find查找,越精准越好!)
2.
原文地址:https://www.cnblogs.com/mawenqi-barry/p/8810987.html
时间: 2024-10-09 00:56:33