Linux命令引數詳細解析-mv

微笑著生活發表於2017-12-24
  • 用法:mv [選項]… [-T] 原始檔 目標檔案
     或:mv [選項]… 原始檔… 目錄
     或:mv [選項]… -t 目錄 原始檔…
    Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.

  • –backup[=CONTROL] 為每個已存在的目標檔案建立備份

  • -b 類似–backup 但不接受引數

  • -f, –force 覆蓋前不詢問

  • -i, –interactive 覆蓋前詢問

  • -n, –no-clobber 不覆蓋已存在檔案
    如果您指定了-i、-f、-n 中的多個,僅最後一個生效。
    –strip-trailing-slashes 去掉每個原始檔引數尾部的斜線

  • -S, –suffix=SUFFIX 替換常用的備份檔案字尾

  • -t, –target-directory=DIRECTORY move all SOURCE arguments into DIRECTORY

  • -T, –no-target-directory treat DEST as a normal file

  • -u, –update move only when the SOURCE file is newer
    than the destination file or when the
    destination file is missing

  • -v, –verbose explain what is being done 詳細解釋正在做什麼

  • -Z, –context set SELinux security context of destination
    file to default type

    • –help 顯示此幫助資訊並退出
    • –version 顯示版本資訊並退出


相關文章