您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么使用Linux命令移動/復(fù)制文件/目錄到指定目錄下”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“怎么使用Linux命令移動/復(fù)制文件/目錄到指定目錄下”文章能幫助大家解決問題。
1.1 復(fù)制文件
復(fù)制文件:把1.txt 復(fù)制到根目錄下的sbin目錄
cp +文件名(可帶路徑)+目標(biāo)路徑(帶路徑) 如:cp 1.txt ~/sbin/
1,2 復(fù)制目錄
復(fù)制目錄:把release 復(fù)制到根目錄下的nfs目錄下
(1).【cp】 +【-r】+【目錄名(可帶路徑)】+【目標(biāo)路徑(帶路徑)】 -r 表示復(fù)制目錄下所有子目錄以及文件
如:cp -r release ~/nfs/
(2).【cp】 +【目錄名/*】+【目標(biāo)路徑(帶路徑)】 /*表示目錄下所有文件和目錄 *是通配符
如: cp release/* ~/nfs/
scp是secure copy的簡寫,用于在Linux下進(jìn)行遠(yuǎn)程拷貝文件的命令,和它類似的命令有cp,不過cp只是在本機(jī)進(jìn)行拷貝不能跨服務(wù)器,而且scp傳輸是加密的。
當(dāng)你服務(wù)器硬盤變?yōu)橹蛔x read only system時(shí),用scp可以幫你把文件移出來。
2.1 命令格式
scp [參數(shù)] [原路徑] [目標(biāo)路徑]
2.2 使用說明
從本地服務(wù)器復(fù)制到遠(yuǎn)程服務(wù)器
2.2.1 復(fù)制文件:
$scp local_file remote_username@remote_ip:remote_folder $scp local_file remote_username@remote_ip:remote_file $scp local_file remote_ip:remote_folder $scp local_file remote_ip:remote_file
指定了用戶名,命令執(zhí)行后需要輸入用戶密碼;
如果不指定用戶名,命令執(zhí)行后需要輸入用戶名和密碼;
2.2.2 復(fù)制目錄:
$scp -r local_folder remote_username@remote_ip:remote_folder $scp -r local_folder remote_ip:remote_folder
第1個(gè)指定了用戶名,命令執(zhí)行后需要輸入用戶密碼;
第2個(gè)沒有指定用戶名,命令執(zhí)行后需要輸入用戶名和密碼;
3.1、實(shí)例1:從服務(wù)器復(fù)制文件到本地目錄
$scp root@10.6.159.147:/opt/soft/demo.tar /opt/soft/
說明: 從10.6.159.147機(jī)器上的/opt/soft/的目錄中下載demo.tar 文件到本地/opt/soft/目錄中
3.2、實(shí)例2:從服務(wù)器復(fù)制文件夾到本地
$scp -r root@10.6.159.147:/opt/soft/test /opt/soft/
說明: 從10.6.159.147機(jī)器上的/opt/soft/中下載test目錄到本地的/opt/soft/目錄來。
3.3、實(shí)例3:上傳本地文件到遠(yuǎn)程服務(wù)器指定目錄
$scp /opt/soft/demo.tar root@10.6.159.147:/opt/soft/scptest
說明: 復(fù)制本地opt/soft/目錄下的文件demo.tar 到遠(yuǎn)程機(jī)器10.6.159.147的opt/soft/scptest目錄
3.4、實(shí)例4:上傳本地目錄到遠(yuǎn)程機(jī)器指定目錄
$scp -r /opt/soft/test root@10.6.159.147:/opt/soft/scptest
說明: 上傳本地目錄 /opt/soft/test到遠(yuǎn)程機(jī)器10.6.159.147上/opt/soft/scptest的目錄中
mv 文件名 目標(biāo)文件夾路徑
在操作 Linux 的時(shí)候可能會碰到一些非常長的命令,這個(gè)命令平時(shí)用的比較頻繁,每次輸入執(zhí)行就會感覺非常麻煩。如果把一段長的命令設(shè)置成一個(gè)短的別名,就會很方便。
Linux 的 alias 命令可以幫我們設(shè)置長命令的別名。
在 Linux 服務(wù)器上執(zhí)行一下 alias 命令,可以看到幾個(gè)很熟悉的命令。如下所示。
[test@271ba307f4954c74955b28c8389bc648 ~]$ alias alias egrep='egrep --color=auto' alias fgrep='fgrep --color=auto' alias grep='grep --color=auto' alias l.='ls -d .* --color=auto' alias ll='ls -l --color=auto' alias ls='ls --color=auto' alias vi='vim' alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
例如:ll 命令不是 Linux 命令,ll 就是通過設(shè)置別名的方式執(zhí)行 ls -l --color=auto。
2.1 alias 添加別名語法
alias 添加別名的語法為:alias [別名]='真實(shí)命令'。
2.2 alias 添加別名步驟
如下所示,為當(dāng)前 Linux 用戶 test 添加命令別名 svccdl,目的是進(jìn)入當(dāng)天的日志文件路徑,操作步驟如下。
進(jìn)入當(dāng)前用戶的 home 路徑下,執(zhí)行 vi .bashrc,添加如下一行文本:
alias svccdl='cd /home/test/logs/`date +%Y-%m-%d`'
編輯后的 .bashrc 文件內(nèi)容如下所示。
# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi alias svccdl='cd /home/test/logs/`date +%Y-%m-%d`' # Uncomment the following line if you don't like systemctl's auto-paging feature: # export SYSTEMD_PAGER= # User specific aliases and functions
執(zhí)行 source .bashrc 使別名永久生效。
[test@271ba307f4954c74955b28c8389bc648 ~]$ source .bashrc
使用測試
[test@271ba307f4954c74955b28c8389bc648 ~]$ svccdl [test@271ba307f4954c74955b28c8389bc648 2022-08-30]$ pwd /home/test/logs/2022-08-30
關(guān)于“怎么使用Linux命令移動/復(fù)制文件/目錄到指定目錄下”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。