首頁 >運維 >linux運維 >怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下

怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下

WBOY
WBOY轉載
2023-05-16 10:16:0571300瀏覽

    Linux指令移動/複製檔案/目錄到指定目錄下

    1、同一個伺服器下複製檔案或資料夾

    1.1 複製檔案

    複製檔案:把1.txt 複製到根目錄下的sbin目錄

    cp +文件名(可带路径)+目标路径(带路径)
          如:cp   1.txt  ~/sbin/

    1,2 複製目錄

    複製目錄:把release 複製到根目錄下的nfs目錄下

    (1).【cp】 【-r】 【目錄名稱(可帶路徑)】 【目標路徑(帶路徑)】 -r 表示複製目錄下所有子目錄以及檔案

    如:cp -r release  ~/nfs/

    怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下

    (2).【cp】 【目錄名稱/*】 【目標路徑(帶路徑)】 /*表示目錄下所有檔案和目錄*是通配符

    如: cp release/* ~/nfs/

    2、 跨伺服器拷貝檔案或資料夾

    scp是secure copy的簡寫,用於在Linux下進行遠端拷貝檔案的指令,和它類似的指令有cp,不過cp只是在本機進行拷貝不能跨伺服器,而且scp傳輸是加密的。

    當你伺服器硬碟變成只讀 read only system時,用scp可以幫你把檔案移出來。

    2.1 指令格式

    scp [参数] [原路径] [目标路径]

    2.2 使用說明

    從本機伺服器複製到遠端伺服器

    # 2.2.1 複製檔案:

    $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
    • 指定了用戶名,命令執行後需要輸入用戶密碼;

    • 如果不指定用戶名,指令執行後需要輸入使用者名稱和密碼;

    2.2.2 複製目錄:

    $scp -r local_folder remote_username@remote_ip:remote_folder
    $scp -r local_folder remote_ip:remote_folder
    • 第1個指定了使用者名,指令執行後面需要輸入使用者密碼;

    • 第2個沒有指定使用者名,命令執行後需要輸入使用者名稱和密碼;

    怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下

    3、使用範例

    3.1、實例1:從伺服器複製檔案到本機目錄

    $scp root@10.6.159.147:/opt/soft/demo.tar  /opt/soft/

    說明: 從10.6.159.147機器上的/opt/soft/的目錄中下載demo.tar 檔案到本機/opt/soft/目錄中

    3.2、實例2:從伺服器複製資料夾到本機

    $scp -r root@10.6.159.147:/opt/soft/test  /opt/soft/

    說明: 從10.6.159.147機器上的/opt/soft/中下載test目錄到本地的/opt/soft/目錄來。

    3.3、實例3:上傳本機檔案到遠端伺服器指定目錄

    $scp /opt/soft/demo.tar root@10.6.159.147:/opt/soft/scptest

    說明: 複製本機opt/soft/目錄下的檔案demo.tar 到遠端機器10.6.159.147的opt/ soft/scptest目錄

    3.4、實例4:上傳本機目錄到遠端機器指定目錄

    $scp -r /opt/soft/test root@10.6.159.147:/opt/soft/scptest

    說明: 上傳本機目錄/opt/soft/test到遠端機器10.6.159.147上/opt /soft/scptest的目錄中

    4、移動資料夾到另一個資料夾

    mv 文件名 目标文件夹路径

    怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下

    設定Linux指令別名

    在操作Linux 的時候可能會碰到一些很長的指令,這個指令平常用的比較頻繁,每次輸入執行就會覺得非常麻煩。如果把一段長的指令設定成一個短的別名,就會很方便。

    Linux 的 alias 指令可以幫我們設定長指令的別名。

    伺服器上的 alias 指令一覽

    在 Linux 伺服器上執行一下 alias 指令,可以看到幾個很熟悉的指令。如下圖所示。

    [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 就是透過設定別名的方式執行 ls -l --color=auto。

    alias 新增別名

    2.1 alias 新增別名語法

    alias 新增別名的語法為:alias [別名]='真實指令'。

    2.2 alias 新增別名步驟

    如下所示,為目前 Linux 使用者 test 新增指令別名 svccdl,目的是進入當天的日誌檔案路徑,操作步驟如下。

    進入目前使用者的 home 路徑下,執行 vi .bashrc,新增如下一行文字:

    alias svccdl='cd /home/test/logs/`date +%Y-%m-%d`'

    編輯後的 .bashrc 檔案內容如下所示。

    # .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

    執行 source .bashrc 使別名永久生效。

    [test@271ba307f4954c74955b28c8389bc648 ~]$ source .bashrc

    使用測試

    [test@271ba307f4954c74955b28c8389bc648 ~]$ svccdl
    [test@271ba307f4954c74955b28c8389bc648 2022-08-30]$ pwd
    /home/test/logs/2022-08-30

    以上是怎麼使用Linux指令移動/複製檔案/目錄到指定目錄下的詳細內容。更多資訊請關注PHP中文網其他相關文章!

    陳述:
    本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除