Linux中拷貝 cp命令中拷貝所有的寫法詳解
今天在編寫一個腳本的時候,發(fā)現(xiàn)一個比較奇怪的問題:就是在使用cp拷貝當前目錄下所有文件到目標目錄的時候,源和目標目錄大小不同。原來一直沒有留意有這樣的問題,后來查了些資料,才知道以前一直使用的格式有誤,
一、預備
cp就是拷貝,最簡單的使用方式就是:
cp oldfile newfile
但這樣只能拷貝文件,不能拷貝目錄,所以通常用:
cp -r old/ new/
那就會把old目錄整個拷貝到new目錄下。注意,不是把old目錄里面的文件拷貝到new目錄,而是把old直接拷貝到new下面,結果是:
[root@dc5 test]# ll new/ total 4 drwxr-xr-x 2 root root 4096 Dec 15 11:55 old
那如果要保持源文件的所有權限,可以這樣:
cp -rp old/ new/
-p參數(shù),可以保持權限、宿主、時間棧,還可能包括link等;還有更簡單的,就是用:
cp -a old/new/
-a參數(shù),就等于-dpR。
二、問題1
好,我們來看看這次的問題。環(huán)境是:
◎兩個目錄:old、new,其中old里面有個三個內(nèi)容:test1文件、test2目錄,還有就是.test3,這是一個隱含文件。
[root@dc5 test]# ll -laR .: total 20 drwxr-xr-x 4 root root 4096 Dec 15 11:55 . drwxrwxrwt 7 root root 4096 Dec 15 11:59 .. drwxr-xr-x 2 root root 4096 Dec 15 12:14 new drwxr-xr-x 3 root root 4096 Dec 15 12:14 old ./new: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. ./old: total 12 drwxr-xr-x 3 root root 4096 Dec 15 12:14 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:07 .test3 -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2 ./old/test2: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 3 root root 4096 Dec 15 12:14 ..
◎操作一:
[root@dc5 test]# cp -a old/* new/ [root@dc5 test]# ll -laR new/ new/: total 12 drwxr-xr-x 3 root root 4096 Dec 15 12:15 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2 new/test2: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 3 root root 4096 Dec 15 12:15 ..
問題出來了:隱含的.test3文件沒有一齊拷貝到new目錄下。
原因是:參數(shù)使用不正確。這樣的寫法,通常都是因為熟悉了過去Dos的格式(包括我自己),而實際在bash環(huán)境下,cp使用是不能匹配類似.開頭的隱含文件的。
◎操作二
正確的寫法應該這樣:
[root@dc5 test]# cp -a old/. new/ [root@dc5 test]# ll -laR new/ new/: total 12 drwxr-xr-x 3 root root 4096 Dec 15 12:14 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:07 .test3 -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2 new/test2: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 3 root root 4096 Dec 15 12:14 ..
不用*號,而用.號代替。
還有一種比較復雜一些的寫法:
[root@dc5 test]# cp -a old/* old/.[^.]* new/ [root@dc5 test]# ll -laR new/ new/: total 12 drwxr-xr-x 3 root root 4096 Dec 15 12:25 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:07 .test3 -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2 new/test2: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 3 root root 4096 Dec 15 12:25 ..
請注意寫法,不要寫成.*了。(原因請看下面)
三、問題2
上面提到不要寫成.,那.代表什么?
[root@dc5 test]# echo .* . ..
.*代表的是當前目錄,以及上一層目錄。
所以,使用.*會導致更大的問題:
[root@dc5 test]# cp -a old/.* new/ cp: cannot copy a directory, `old/..', into itself, `new/' cp: cannot copy a directory, `old/..', into itself, `new/' cp: will not create hard link `new/old' to directory `new/.' cp: overwrite `new/.test3'? y [root@dc5 test]# ll -laR new/ new/: total 16 drwxr-xr-x 4 root root 4096 Dec 15 11:55 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:07 .test3 drwxr-xr-x 2 root root 4096 Dec 15 12:14 new -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2 new/new: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 .. -rw-r--r-- 1 root root 0 Dec 15 12:07 .test3 -rw-r--r-- 1 root root 0 Dec 15 12:05 test1 new/test2: total 8 drwxr-xr-x 2 root root 4096 Dec 15 12:14 . drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..
也就是說,使用.*就等于這樣了:
[root@dc5 test]# cp -a old/. old/.. old/.test3 new/ [root@dc5 test]# echo old/.* old/. old/.. old/.test3
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Linux中openssl/opensslv.h找不到問題的解決方法
最近在安裝scrapy過程中碰到了openssl某個文件找不到的問題,通過查找相關的資料進行了解決,下面這篇文章主要給大家分享了關于Linux中openssl/opensslv.h找不到問題的解決方法,需要的朋友可以參考借鑒,下面來一起看看吧。2017-07-07
linux下實現(xiàn)web數(shù)據(jù)同步的四種方式(性能比較)
這篇文章主要介紹了linux下常用的四種web數(shù)據(jù)同步方法,并且說明了每個方法的功能與優(yōu)勢,需要的朋友可以參考下2013-09-09
Apache?SeaTunnel實現(xiàn)?非CDC數(shù)據(jù)抽取實踐記錄
這篇文章主要介紹了Apache?SeaTunnel實現(xiàn)?非CDC數(shù)據(jù)抽取實踐,主要介紹SeaTunnel?1.X在交管行業(yè)中的應用,以及其中如何實現(xiàn)從Oracle數(shù)據(jù)庫把數(shù)據(jù)增量導入數(shù)倉這樣一個具體的場景,需要的朋友可以參考下2022-05-05

