passwd、which、locate、whereis、find 命令

    技术2022-07-10  147

    # passwd命令 echo "123456" | passwd --stdin Thomas    「 非交互设置密码 」  passed thomas   # which命令 which date   # whereis命令 whereis ls whereis -b ls    「 二进制文件 」  whereis -m ls    「 man page & manual」    # locate命令 touch /usr/local/src/thomas    「 locate命令查找不到 」  locate thomas | more ls /var/lib/mlocate/mlocate.db    「 locate 命令数据库 & 日更 」  updatedb    「 更新数据库 」  locate thomas | more    「 找到 /usr/local/src/thomas 」  locate -i thomas    「 -i 忽略大小写 」    # find命令 路径 -属性 值 find ~/Documents/ -name 元荣投资 -i 忽略大小写 find / -user thomas    「 -user 用户 」  find / -user thomas -group root    「 -group 组名  」  id thomas find / -uid 502    「 -uid 」  find / -size 4M    「 -size 4M的文件 」  find ~ -size +4M    「 > 4M的文件」  find ~ -size -4M    「 < 4M的文件 」  find ~ -size +2M -size -5M    「 2M < 文件 < 5M 」  find ~ -ctime 1    「 -ctime 1天前 」  find ~ -ctime +1    「 -ctime 超过一天 」  find . -perm -444    「 -perm mode 」  -444 ugo有  r 权限 -44 go有r -4 o有r
    Processed: 0.015, SQL: 9