Solaris 查找命令

发布于 2024-08-13 07:49:30 字数 210 浏览 6 评论 0原文

在 Solaris 中,查找具有多种文件名格式的文件的 find 命令的语法是什么?

例如:在我当前的目录及其子目录中,如果我有 test.logsample.outdemo.buf 和一些其他文件,我如何编写单个 find 命令来查找这 ​​3 个文件。

In Solaris, what is the syntax of find command to find files having multiple file name formats?

Eg: In my current directory and in its sub-directories if I have files like test.log, sample.out, demo.buf and some other files, how can I write single find command to find these 3 files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与风相奔跑 2024-08-20 07:49:30

这是正确的

find . \( -name "test.log" -o -name "sample.out" -o -name "demo.buf" \) -print

this is the correct one

find . \( -name "test.log" -o -name "sample.out" -o -name "demo.buf" \) -print
就此别过 2024-08-20 07:49:30

与所有其他 Unix 系统相同:

 find . -name test.log -o -name sample.out -o name demo.buf

Same as all other Unixes:

 find . -name test.log -o -name sample.out -o name demo.buf
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文