次のフォルダー構造を検討してください
root/dirA/the_folder
root/dirA/dir2/the_folder
root/dirB/the_folder
root/dirB/dir2/the_folder
dirA/the_folder
and を再帰的に見つけて tarしたいdirB/the_folder
。しかし、私が使用するとき
find root/ -name 'the_folder' -type d | xargs tar cvf myTar.tar
すべてのフォルダー (dir2/the_folder を含む) がパックされますが、それは望ましくありません。解決策は何ですか?