查找分为三类: 1.which:命令查找 2.find:文件查找,针对文件名 3.locate:文件查找,依赖数据库 一、命令文件查找 如 查找ls命令的位置 which ls /usr/bin/ls //结果 我们可以看出命令所在目录在/usr/bin/下 二、文件查找find 语法:find [path...] [ options] [ expression] [action] 命令, 路径, 选项, 表达式 , 动作 1.按文件名来查找 [root@localhost ~]# find /etc -name hosts /etc/hosts /e