0

私は PC で cygwin を使用しており、/pictures/ (およびサブディレクトリ) 内のすべての .nef ファイルを新しいディレクトリに移動しようとしていますが、nef ファイルの元のディレクトリ名を保持したいと考えています。

つまり、/pictures/vacation2012/image01.nef および /pictures/vac09/image01.nef

入る必要があります

/pictures/nef/vac09/ および /pictures/nef/vacation2012/

4

1 に答える 1

0

次のように実行できます。

$ cd from_directory
$ (tar cf - `find . -name "*.nef"`) | (cd to_directory; tar xf - )
$ find . -name "*.nef" -exec rm -rf {} \; # be careful with this...
于 2012-12-21T17:39:13.787 に答える