linux 常用长命令

搜索时,排除某个目录

搜索名为libc的文件,但是排除/mnt目录

sudo find / -path "/mnt" -prune -o -type f -name "libc" -print

你可能感兴趣的:(操作系统,驱动开发,linux)