find命令中的-exec出错

时间:2013-10-20 00:30:34

标签: bash find

我在跟踪远程服务器上同一目录的某些特定文件时遇到问题。这是我的代码:

ssh host find /path/to/a/dir -name "log*" ! -name "file" -print0 -exec tail -n 20 {} \;

打印-exec: missing argument

1 个答案:

答案 0 :(得分:0)

您需要将命令参数引用到ssh即

ssh host 'command options, etc., '