linux中的cp命令用法

本篇內容主要講解“l(fā)inux中的cp命令用法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“l(fā)inux中的cp命令用法”吧!

創(chuàng)新互聯公司來電聯系:18980820575,為您提供成都網站建設網頁設計及定制高端網站建設服務,創(chuàng)新互聯公司網頁制作領域10余年,包括資質代辦等多個行業(yè)擁有多年的網站營銷經驗,選擇創(chuàng)新互聯公司,為企業(yè)錦上添花。

1.命令格式:

用法:

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

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

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

2.命令功能:

將源文件復制至目標文件,或將多個源文件復制至目標目錄。

3.命令參數:

-a, --archive    等于-dR --preserve=all
    --backup[=CONTROL    為每個已存在的目標文件創(chuàng)建備份
-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[=屬性列表   保持指定的屬性(默認:模式,所有權,時間戳),如果
               可能保持附加屬性:環(huán)境、鏈接、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

說明:

目標文件存在時,會詢問是否覆蓋。這是因為cp是cp -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 的參數造成的,建立的是一個『快捷方式』,所以您會看到在文件的最右邊,會顯示這個文件是『連結』到哪里去的!

到此,相信大家對“l(fā)inux中的cp命令用法”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

當前名稱:linux中的cp命令用法
網頁網址:http://muchs.cn/article14/jidoge.html

成都網站建設公司_創(chuàng)新互聯,為您提供網站改版、小程序開發(fā)營銷型網站建設、關鍵詞優(yōu)化手機網站建設、網站制作

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

成都網站建設公司