Supponiamo di avere un URL completo del file desiderato, ad es
http://domain.com/directory/4?action=AttachFile&do=view&target=file.tgz
Vorrei andare senza installare un nuovo software. È possibile?
Comando
cp 'http://example.com/directory/4?action=AttachFile&do=get&target=file.tgz' hooray
non funziona;)
wget -O hooray "http://domain.com/directory/4?action=AttachFile&do=get&target=file.tgz"
. È possibile aggiungere -c
un'opzione per riprendere il download se si è persa la connessione durante il download del file.
wget
è il tuo amico qui :)