Rename

如何在 sftp 伺服器中移動文件?

  • August 7, 2015

如何在不同目錄的 sftp 伺服器中移動文件?我使用 sftp 連接到此伺服器,然後嘗試使用移動文件

mv myfile.csv /my/dir/myfile.csv

但這會產生錯誤。如何做到這一點?

sftp互動模式下沒有mv命令。改為使用rename

要了解哪些命令可用,請查看手冊頁man sftphelpsftp.

該客戶端lftp可用於 FTP 和 SFTP。它有一個mv命令,您可以使用它在遠端伺服器上執行移動。這裡有一個很好的使用教程,標題為:Unix: Flexibly move files with lftp

如果您查看lftp用法,您會注意到一個mv命令。

$ lftp
lftp :~> help
   !<shell-command>                     (commands)                           alias [<name> [<value>]]             attach [PID]
   bookmark [SUBCMD]                    cache [SUBCMD]                       cat [-b] <files>                     cd <rdir>
   chmod [OPTS] mode file...            close [-a]                           [re]cls [opts] [path/][pattern]      debug [<level>|off] [-o <file>]
   du [options] <dirs>                  exit [<code>|bg]                     get [OPTS] <rfile> [-o <lfile>]      glob [OPTS] <cmd> <args>             help [<cmd>]
   history -w file|-r file|-c|-l [cnt]  jobs [-v]                            kill all|<job_no>                    lcd <ldir>
   lftp [OPTS] <site>                   ln [-s] <file1> <file2>              ls [<args>]                          mget [OPTS] <files>
   mirror [OPTS] [remote [local]]       mkdir [-p] <dirs>                    module name [args]                   more <files>
   mput [OPTS] <files>                  mrm <files>                          mv <file1> <file2>                   [re]nlist [<args>]
   open [OPTS] <site>                   pget [OPTS] <rfile> [-o <lfile>]     put [OPTS] <lfile> [-o <rfile>]      pwd [-p]
   queue [OPTS] [<cmd>]                 quote <cmd>                          repeat [OPTS] [delay] [command]      rm [-r] [-f] <files>
   rmdir [-f] <dirs>                    scache [<session_no>]                set [OPT] [<var> [<val>]]            site <site-cmd>                      source <file>
   torrent [-O <dir>] <file|URL>...     user <user|URL> [<pass>]             wait [<jobno>]                       zcat <files>                         zmore <files>

參考

引用自:https://unix.stackexchange.com/questions/92963