2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

shellでうまいこと中身だけコピーしたい

Last updated at Posted at 2018-06-08

背景

shellスクリプトでディレクトリのコピーとかやりますよね。

$ cp -r ./src ./dst

こうすると、以下のようになります。

$ tree
root
├── dst
│   └── text.txt
└── src
    └── text.txt

では、srcが変更されたので、dstも更新しましょう。

$ cp -r ./src ./dst
$ tree
root
├── dst
│   ├── src
│   │   └── text.txt
│   └── text.txt
└── src
    └── text.txt

・・・
一回目のコマンドは、srcというフォルダをコピーしてdstというフォルダに変更する処理だったのですが、二回目以降はsrcというフォルダをdst下にコピーする処理になってしまっています。

対策

コピーコマンドの書き方をちょいと変えます。

$ cp -r ./src/. ./dst
$ tree
root
├── dst
│   └── text.txt
└── src
    └── text.txt

つまり、srcというフォルダの中にあるすべてのデータをdst下にコピーする、というコマンドにします。
dstが無ければつくってくれますので、こちらを活用するようにしましょう。

追記

-Tオプションをつけて、以下のようなコードにしても同じ動きになるようです。

$ cp -rT ./src/. ./dst

以上です。よろしくお願いいたします。

2
2
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?