ディレクトリaからコピーまたは移動せずに、ディレクトリbとそのサブディレクトリファイルをディレクトリaと同じに設定します。

ディレクトリaからコピーまたは移動せずに、ディレクトリbとそのサブディレクトリファイルをディレクトリaと同じに設定します。

私はディレクトリから何もコピーまたは移動せずに、ディレクトリ(ディレクトリと同じファイルを含み、別の方法で配置されている)bの構造と同じようにディレクトリに含まれるファイルを整理する方法を探しています。このようにして、下の図に示すように、or / andコマンドの出力を使用してコマンドのいくつかの高度な使用法を見つけることができます。abamvawksed

モデルディレクトリの前の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と同じにする必要があります。aa

答え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階層に一致するようにファイルを並べ替えるには、次の手順を実行します。aab

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
  • 宛先ディレクトリをファイルの親ディレクトリとして定義ab
  • ターゲットディレクトリを作成します(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

関連情報