Linux 的find命令怎么用

Linux的find命令用法有:1、查找当前路径名字叫“hello.txt”的文件,用法为“find ./ -name 文件名全程”;2、查找根目录名字叫“hello.txt”的文件,用法为“find ./ -name 文件名|xargs rm”;3、查找删除名为“hello.txt”文件,用法为“find ./ -name 文件名|xargs rm”。

Linux 的find命令怎么用

详细的了解一下find命令用法及参数吧。

准备条件:

Centos7.9的操作系统的服务器一台;

Xshell终端已经链接了该服务器;

1、查找当前路径名字叫“hello.txt”的文件;

用法:find ./ -name 文件名全程

例如:find ./ -name hello.txt

QQ截图20230922111827.png

批量查找名为hello的文件:

find ./ -name hel*

“*”为模糊匹配

QQ截图20230922111908.png

2、查找根目录名字叫“hello.txt”的文件;

用法:find / -name 文件名全程

例如:find / -name hello.txt

QQ截图20230922111936.png

3、查找删除名为“hello.txt”文件;

用法:find ./ -name 文件名|xargs rm

例如:find ./ -name hello.txt|xargs rm

原文来自:www.php.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容