Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在尝试使用 find 命令和 -exec 在找到时执行文件文件,但它似乎不起作用。这是一些代码:
ssh $i find $DIRECTORY -name "version.sh" -exec sh {} \;
我收到错误 -exec 没有参数
谢谢!
你的一方得到一个分号,但另一方没有。
... \\\;
更易读的版本可能是:
ssh $i "find $DIRECTORY -name version.sh | xargs -r sh"