linux檔案複製

2021-09-29 16:44:02 字數 770 閱讀 5806

語法:

[root@www ~]# cp [-adfilprsu] **檔(source) 目標檔(destination)

[root@www ~]# cp [options] source1 source2 source3 .... directory

選項與引數:

-f:為強制(force)的意思,若目標檔案已經存在且無法開啟,則移除後再嘗試一次;

-i:若目標檔(destination)已經存在時,在覆蓋時會先詢問動作的進行(常用)

-l:進行硬式鏈結(hard link)的鏈結檔建立,而非複製檔案本身;

-p:連同檔案的屬性一起複製過去,而非使用預設屬性(備份常用);

-r:遞迴持續複製,用於目錄的複製行為;(常用)

-s:複製成為符號鏈結檔 (symbolic link),亦即『捷徑』檔案;

-u:若 destination 比 source 舊才公升級 destination !

1.

[root@www ~]# cp ~/.bashrc /tmp/bashrc

2.[root@www ~]# cp -i ~/.bashrc /tmp/bashrc

cp: overwrite `/tmp/bashrc'? n <==n不覆蓋,y為覆蓋

linux複製檔案

1.cp命令 命令 cp dir1 a.doc dir2 表示將dir1下的a.doc檔案複製到dir2目錄下 cp r dir1 dir2 表示將dir1及其dir1下所包含的檔案複製到dir2下 cp r dir1 dir2 表示將dir1下的檔案複製到dir2,不包括dir1目錄 說明 cp引...

linux檔案複製命令

1 把找到的資訊複製到乙個檔案中,可以是某個檔案中的一部分,也可以是整個檔案。cat apache tomcat logs catalina.2017 08 22.log grep starting start0822 在tomcat日誌中找出與starting匹配的資訊再儲存到start0822檔...

Linux 複製檔案命令

linux cp命令拷貝命令非常實用,cp命令可以將指定路徑下的檔案 目錄 拷貝到 成 另一檔案或目錄中 cp options 或cp options source1 source2 source3 directory 上面第一條命令為單個檔案或目錄拷貝,下乙個為多個檔案拷貝到最後的目錄。optio...