cp命令用來複製檔或者目錄,是Linux系統中最常用的命令之一。一般情況下,shell會設置一個別名,在命令列下複製檔時,如果目的檔案已經存在,就會詢問是否覆蓋,不管你是否使用-i參數。但是如果是在shell腳本中執行cp時,沒有-i參數時不會詢問是否覆蓋。這說明命令列和shell腳本的執行方式有些不同。 

1命令格式:

用法:

        cp [選項]... [-T]  目的

       或:cp [選項]... ... 目錄

       或:cp [選項]... -t 目錄 ...

2命令功能:

將原始檔案複製至目的檔案,或將多個原始檔案複製至目標目錄。

3命令參數:

-a, --archive    等於-dR --preserve=all

    --backup[=CONTROL    為每個已存在的目的檔案創建備份

-b                類似--backup 但不接受參數

   --copy-contents        在遞迴處理是複製特殊檔內容

-d                等於--no-dereference --preserve=links

-f, --force        如果目的檔案無法打開則將其移除並重試( -n 選項

                    存在時則不需再選此項)

-i, --interactive        覆蓋前詢問(使前面的 -n 選項失效)

-H                跟隨原始檔案中的命令列符號連結

-l, --link            連結檔而不複製

-L, --dereference   總是跟隨符號連結

-n, --no-clobber   不要覆蓋已存在的檔(使前面的 -i 選項失效)

-P, --no-dereference   不跟隨原始檔案中的符號連結

-p                等於--preserve=模式,所有權,時間戳記

    --preserve[=屬性清單   保持指定的屬性(預設:模式,所有權,時間戳記),如果

               可能保持附加屬性:環境、連結、xattr 

-R, -r, --recursive  複製目錄及目錄內的所有專案

4命令實例:

實例一:複製單個檔到目標目錄,檔在目的檔案中不存在

命令:

cp log.log test5

輸出:

[root@localhost test]# cp log.log test5

[root@localhost test]# ll

-rw-r--r-- 1 root root    0 10-28 14:48 log.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

drwxr-xr-x 2 root root 4096 10-28 14:53 test5

[root@localhost test]# cd test5

[root@localhost test5]# ll

-rw-r--r-- 1 root root 0 10-28 14:46 log5-1.log

-rw-r--r-- 1 root root 0 10-28 14:46 log5-2.log

-rw-r--r-- 1 root root 0 10-28 14:46 log5-3.log

-rw-r--r-- 1 root root 0 10-28 14:53 log.log

說明:

在沒有帶-a參數時,兩個檔的時間是不一樣的。在帶了-a參數時,兩個檔的時間是一致的。  

實例二:目的檔案存在時,會詢問是否覆蓋

命令:

cp log.log test5

輸出:

[root@localhost test]# cp log.log test5

cp:是否覆蓋“test5/log.log”? n

[root@localhost test]# cp -a log.log test5

cp:是否覆蓋“test5/log.log”? y

[root@localhost test]# cd test5/

[root@localhost test5]# ll

-rw-r--r-- 1 root root 0 10-28 14:46 log5-1.log

-rw-r--r-- 1 root root 0 10-28 14:46 log5-2.log

-rw-r--r-- 1 root root 0 10-28 14:46 log5-3.log

-rw-r--r-- 1 root root 0 10-28 14:48 log.log

說明:

目的檔案存在時,會詢問是否覆蓋。這是因為cpcp -i的別名。目的檔案存在時,即使加了-f標誌,也還會詢問是否覆蓋。

實例三:複製整個目錄

命令:

輸出:

目標目錄存在時:

[root@localhost test]# cp -a test3 test5 

[root@localhost test]# ll

-rw-r--r-- 1 root root    0 10-28 14:48 log.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

drwxr-xr-x 3 root root 4096 10-28 15:11 test5

[root@localhost test]# cd test5/

[root@localhost test5]# ll

-rw-r--r-- 1 root root    0 10-28 14:46 log5-1.log

-rw-r--r-- 1 root root    0 10-28 14:46 log5-2.log

-rw-r--r-- 1 root root    0 10-28 14:46 log5-3.log

-rw-r--r-- 1 root root    0 10-28 14:48 log.log

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

目標目錄不存在是:

[root@localhost test]# cp -a test3 test4

[root@localhost test]# ll

-rw-r--r-- 1 root root    0 10-28 14:48 log.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

drwxrwxrwx 2 root root 4096 10-28 14:47 test4

drwxr-xr-x 3 root root 4096 10-28 15:11 test5

[root@localhost test]#

說明:

注意目標目錄存在與否結果是不一樣的。目標目錄存在時,整個原始目錄被複製到目標目錄裡面。

 

實例四:複製的 log.log 建立一個連結檔 log_link.log

命令:

cp -s log.log log_link.log

輸出:

[root@localhost test]# cp -s log.log log_link.log

[root@localhost test]# ll

lrwxrwxrwx 1 root root    7 10-28 15:18 log_link.log -> log.log

-rw-r--r-- 1 root root    0 10-28 14:48 log.log

drwxr-xr-x 6 root root 4096 10-27 01:58 scf

drwxrwxrwx 2 root root 4096 10-28 14:47 test3

drwxrwxrwx 2 root root 4096 10-28 14:47 test4

drwxr-xr-x 3 root root 4096 10-28 15:11 test5

說明:

那個 log_link.log 是由 -s 的參數造成的,建立的是一個『快捷方式』,所以您會看到在檔的最右邊,會顯示這個檔是『連結』到哪裡去的!

 轉自http://www.cnblogs.com/peida/archive/2012/10/29/2744185.html

arrow
arrow
    文章標籤
    linux command cp
    全站熱搜

    痞客興 發表在 痞客邦 留言(0) 人氣()