命令替换如何与 find 一起使用?

发布于 2024-11-07 08:35:03 字数 358 浏览 0 评论 0原文

我有以下命令

find 。 -name "*.tiff" -exec echo `basename -s .tiff {}` \;

我希望这会打印我所有的 .tiff 文件,而不带文件扩展名。我得到的是

./file1.tiff
./file2.tiff
...

命令

find 。 -name "*.tiff" -exec basename -s .tiff {} \;

确实会产生

file1
file2
...

这不应该是 echo 的输入吗?

I have the following command

find . -name "*.tiff" -exec echo `basename -s .tiff {}` \;

I expect this to print all my .tiff-files without their file extensions. What I get is

./file1.tiff
./file2.tiff
...

The command,

find . -name "*.tiff" -exec basename -s .tiff {} \;

does yield

file1
file2
...

Is this not supposed to be the input of echo?

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

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

发布评论

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

评论(2

好听的两个字的网名 2024-11-14 08:35:03

反引号的内容在 find 命令之前执行 - 只产生占位符 {},该占位符在 find 命令行中使用 - 因此您的结果。您始终可以使用 set -x 来检查 shell 的功能。

The content of the backticks is executed before the find command - yielding just the placeholder {}, which is used in the find command line - hence your result. You can always use set -x to examine what the shell is up to.

滴情不沾 2024-11-14 08:35:03

使用单引号字符 (') 而不是反引号 (`) - 将命令放在反引号中会导致该命令被执行并被命令中的输出替换。
另外,修改命令以消除 echo,如下所示:

find . -name "*.tiff" -exec 'basename -s .tiff {}' \;

这将在每个找到的文件上执行 basename

Use single-quote characters (') instead of backticks (`) - putting a command in backticks causes it to be executed and replaced by its output in your command.
Also, modify the command to get rid of the echo, like this:

find . -name "*.tiff" -exec 'basename -s .tiff {}' \;

This will execute basename on each found file.

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