私はディレクトリから何もコピーまたは移動せずに、ディレクトリ(ディレクトリと同じファイルを含み、別の方法で配置されている)b
の構造と同じようにディレクトリに含まれるファイルを整理する方法を探しています。このようにして、下の図に示すように、or / andコマンドの出力を使用してコマンドのいくつかの高度な使用法を見つけることができます。a
b
a
mv
awk
sed
モデルディレクトリの前のasとitは、Errors a
次のように変更されていませんErrors b
。
. .
└── Errors a └── Errors b
├── Eltendorf ├── Eltendorf
│ ├── 2013 March 09.txt │ ├── 2013 March 09.txt
│ ├── 2014 November 07.txt │ ├── 2014 November 07.txt
│ ├── 2016 August 03.txt │ ├── 2016 August 03.txt
│ └── 2017 October 02.txt │ └── 2017 October 02.txt
├── Gettendorf ├── Gettendorf
│ ├── 2011 August 05.txt │ ├── 2011 August 05.txt
│ ├── 2014 October 02.txt │ ├── 2014 October 02.txt
│ ├── 2014 October 09.txt │ ├── 2014 October 09.txt
│ └── 2015 November 08.txt │ └── 2015 November 08.txt
├── Krensdorf ├── Krensdorf
│ ├── 2010 August 04.txt │ ├── 2010 August 04.txt
│ ├── 2010 November 04.txt │ ├── 2010 November 04.txt
│ └── 2012 August 09.txt │ └── 2012 August 09.txt
└── Ritzing └── Ritzing
├── 2013 March 01.txt ├── 2013 March 01.txt
├── 2013 March 02.txt ├── 2013 March 02.txt
├── 2013 March 03.txt ├── 2013 March 03.txt
└── 2018 November 02.txt └── 2018 November 02.txt
Errors c
必要に応じて前後の目次は次のとおりですErrors d
。
. .
└── Errors c └── Errors d
├── Eltendorf ├── Eltendorf
│ ├── 2010 November 04.txt │ ├── 2013 March 09.txt
│ ├── 2013 March 02.txt │ ├── 2014 November 07.txt
│ ├── 2014 November 07.txt │ ├── 2016 August 03.txt
│ └── 2014 October 09.txt │ └── 2017 October 02.txt
├── Gettendorf ├── Gettendorf
│ ├── 2012 August 09.txt │ ├── 2011 August 05.txt
│ ├── 2013 March 03.txt │ ├── 2014 October 02.txt
│ ├── 2014 October 02.txt │ ├── 2014 October 09.txt
│ └── 2017 October 02.txt │ └── 2015 November 08.txt
├── Krensdorf ├── Krensdorf
│ ├── 2010 August 04.txt │ ├── 2010 August 04.txt
│ ├── 2013 March 01.txt │ ├── 2010 November 04.txt
│ ├── 2015 November 08.txt │ └── 2012 August 09.txt
│ └── 2018 November 02.txt └── Ritzing
└── Ritzing ├── 2013 March 01.txt
├── 2011 August 05.txt ├── 2013 March 02.txt
├── 2013 March 09.txt ├── 2013 March 03.txt
└── 2016 August 03.txt └── 2018 November 02.txt
これにより、ディレクトリの内容をコピーせずにディレクトリをディレクトリc
と同じにする必要があります。a
a
答え1
検索, sed, xargs, mkdir:
find a -type d|sed '1d;s/a\///'|xargs -i mkdir -p c/{}
答え2
簡単にするために、元のデータが次のディレクトリにあるとしますa
。
a
├── d1
│ ├── f1
│ └── f2
└── d2
├── f3
└── f4
b
そして、同じファイルを含みますa
が、異なるディレクトリ構造で構成されたディレクトリがあります。
b
├── d1
│ └── f3
├── d2
│ ├── f1
│ └── f2
└── d3
└── f4
から次に何もコピーせずにb
階層に一致するようにファイルを並べ替えるには、次の手順を実行します。a
a
b
export orig=a dest=b
find "$orig" -type f -exec sh -c '
for file; do
target=$dest${file#$orig}
target=${target%/*}
mkdir -p -- "$target"
find "$dest" -type f -name "${file##*/}" \
-exec mv -i -- \{\} "$target/" \;
done
' mysh {} +
このあまり効率的ではないコード(find
の各ファイルに対して新しいプロセスを生成しますa
):
- 検索のすべての一般的なファイル
a
、 - 宛先ディレクトリをファイルの親ディレクトリとして定義
a
しb
、 - ターゲットディレクトリを作成します(
makedir -p
既存のディレクトリについて文句を言うことなく、必要なすべての親ディレクトリも作成します)。 - 現在のファイルという名前のすべてのファイルを検索して、
b
ターゲットディレクトリに移動します。異なるサブディレクトリにある2つのファイルの名前が同じmv -i
場合は、データの損失を防ぐために上書きする前に確認してください。b
b
その後、次の場所(d3
例のように)にない通常のファイルまたはディレクトリを削除できますa
。
export orig=a dest=b
find "$dest" \( -type f -o -type d \) -exec sh -c '
target=$orig${1#$dest}
[ ! -e "$target" ]
' mysh {} \; -delete
最終結果は次のとおりです。
b
├── d1
│ ├── f1
│ └── f2
└── d2
├── f3
└── f4