Linux comando “get” no windows

1

Existe um equivalente windows do comando "get" do Linux nas janelas que eu posso usar para obter objetos remotos? Eu quero ser capaz de ter um arquivo de lote baixar um arquivo remoto em execução.

    
por nate302 02.04.2013 / 02:29

1 resposta

2

Supondo que você use o Windows PowerShell, é isso que você está procurando:

If you just need to retrieve a file, you can use the DownloadFile method of the WebClient object:

$client = new-object System.Net.WebClient

$client.DownloadFile( $url,$path )

Where $url is a string representing the file's URL, and $path representing the local path the file will be saved to.

Note that $path must include the file name; it can't just be a directory.

Vem deste tópico: Alternativa nativa para wget no Windows PowerShell?

    
por 02.04.2013 / 02:45