すべてのpngファイルをディレクトリツリーに保存したいと思います。使った
find . -iname *.png| xargs tar -czf renderresultsall.tar.gz
しかし、いくつかのファイルだけが得られ、いくつかのディレクトリがありません。
./pathA/patha1 ok
./pathA/patha2 ignored
./pathA/patha3 ok
./pathB/pathb1 ignored
./pathB/pathb2 ignored
./pathB/pathb3 ignored
...
そして私が使用している場合:
find ./pathA/ -iname *.png| xargs tar -czf renderresultspathA.tar.gz
パスpatha(patha1、patha2、patha3)のすべてのパスを取得します。
これは呪いですか?