Linux
Tips |
|
ディレクトリごとファイルをコピーするには
北浦訓行
2001/4/12
|
サブディレクトリも含めてディレクトリの内容をすべてコピーするには、cpコマンドに-rオプションを付ける。
cpコマンドでファイルやディレクトリをコピーすると、コピーされたファイルやディレクトリの日付などは、cpコマンドを実行したユーザーのものになる。
これをオリジナルのファイルやディレクトリのままコピーするには、cpコマンドに-aオプションを付ける。
$ ls -l /tmp
合計 24
-rw-r--r-- 1 root root 21720
Apr 6 10:47 other.txt
$ cp /tmp/other.txt 1.txt
$ cp -a /tmp/other.txt 2.txt
$ ls -l
合計 48
-rw-r--r-- 1 noriyu-k efield 21720
Apr 6 10:55 1.txt
-rw-r--r-- 1 noriyu-k efield 21720
Apr 6 10:47 2.txt ←日付けがオリジナルのまま |
Linux Squareフォーラム Linux Tipsカテゴリ別インデックス |
Linux & OSS 記事ランキング
本日
月間