中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS下cp命令中拷貝所有的用法

發布時間:2021-08-31 17:03:35 來源:億速云 閱讀:309 作者:chen 欄目:系統運維

本篇內容主要講解“CentOS下cp命令中拷貝所有的用法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“CentOS下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參數,可以保持權限、宿主、時間棧,還可能包括link等;還有更簡單的,就是用:

cp -a old/new/

-a參數,就等于-dpR。

二、問題1

好,我們來看看這次的問題。環境是:

◎兩個目錄:old、new,其中old里面有個三個內容: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目錄下。

原因是:*參數使用不正確。這樣的寫法,通常都是因為熟悉了過去Dos的格式(包括我自己),而實際在bash環境下,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

四、擴展

其實這樣的問題,不單cp命令有這樣的問題,在所有涉及含有特殊字符意義文件的命令時,都需要考慮,例如rm:

引用

[root@dc5 new]# ll -a
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
[root@dc5 new]# rm -rf *
[root@dc5 new]# ll -a
total 8
drwxr-xr-x  2 root root 4096 Dec 15 12:40 .
drwxr-xr-x  4 root root 4096 Dec 15 11:55 ..
-rw-r--r--  1 root root    0 Dec 15 12:07 .test3

正確的寫法應該是:

引用

[root@dc5 new]# rm -rf .* *
rm: cannot remove `.' or `..'
rm: cannot remove `.' or `..'
[root@dc5 new]# ll -a
total 8
drwxr-xr-x  2 root root 4096 Dec 15 12:42 .
drwxr-xr-x  4 root root 4096 Dec 15 11:55 ..

當然,這是一樣的:

引用

[root@dc5 new]# rm -rf * .[^.]*
[root@dc5 new]# ll -a
total 8
drwxr-xr-x  2 root root 4096 Dec 15 12:44 .
drwxr-xr-x  4 root root 4096 Dec 15 11:55 ..

※很多時候,預計的和實際的結果是完全不一樣的。bash編寫腳本尤其需要注意。

到此,相信大家對“CentOS下cp命令中拷貝所有的用法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河池市| 东港市| 象州县| 卢湾区| 图们市| 贵港市| 沙湾县| 甘德县| 洪江市| 霸州市| 赤城县| 永靖县| 古田县| 富民县| 阿图什市| 华坪县| 安国市| 揭东县| 北碚区| 墨玉县| 平山县| 呼和浩特市| 罗定市| 平乐县| 光泽县| 多伦县| 松江区| 尉犁县| 通道| 惠来县| 庄河市| 合阳县| 中超| 纳雍县| 怀宁县| 霍城县| 利津县| 调兵山市| 仁寿县| 即墨市| 营山县|