我需要找到包含名为"这个文件";。一旦找到文件,我需要在包含这些文件的每个目录中执行特定的命令。例如:查找包含"的目录;该文件";并列出每个目录中包含的所有文件。我正在尝试:find . -name "thisfile"
,然后我考虑将cd放入每个文件夹并执行命令,但我无法实现这一点。例如find . -name "thisfile" -exec dirname && cd into those folders && ls"
您可以使用-execdir
:
find . -name "thisfile" -execdir ls ;