Como faço para transferir arquivos usando o FileZilla via linha de comando?

0

Como posso transferir arquivos para um determinado servidor usando a linha de comando usando FileZilla ?

É possível em primeiro lugar?

    
por Priyank Patel 21.06.2012 / 11:25

1 resposta

5

Command line using FileZilla[?]

O FileZilla não é um programa de linha de comando; é um programa GUI.

Até onde eu sei, quase todas as versões do Windows têm um comando ftp da linha de comandos.

Se você precisar de algo melhor, sugiro uma porta do Windows de < href="http://www.ncftp.com/ncftp/doc/ncftpput.html"> ncftpput :

The purpose of ncftpput is to do file transfers from the command-line without entering an interactive shell. This lets you write shell scripts or other unattended processes that can do FTP. It is also useful for advanced users who want to send files from the shell command line without entering an interactive FTP program such as ncftp.

You can upload an entire directory tree of files by using the -R flag. Example:

$ ncftpput -R pikachu.nintendo.co.jp /incoming /tmp/stuff

This would create a /incoming/stuff hierarchy on the remote host.

    
por 21.06.2012 / 11:36