使用 find 函数和 exec 标志
using the find function and the exec flag
这是菜鸟问题:
我正在尝试 运行 我在网上找到的以下脚本:
find <file name> -type f -exec cat {}
出于某种原因,我遇到了 find: missing argument to '-exec'
错误。
我做错了什么?
行尾的分号(引号或转义)丢失。应该是:
find <file name> -type f -exec cat {} \;
这是菜鸟问题: 我正在尝试 运行 我在网上找到的以下脚本:
find <file name> -type f -exec cat {}
出于某种原因,我遇到了 find: missing argument to '-exec'
错误。
我做错了什么?
行尾的分号(引号或转义)丢失。应该是:
find <file name> -type f -exec cat {} \;