Supongamos que tenemos una URL completa del archivo deseado, por ejemplo
http://domain.com/directory/4?action=AttachFile&do=view&target=file.tgz
Me gustaría ir sin instalar un nuevo software. ¿Es posible?
Mando
cp 'http://example.com/directory/4?action=AttachFile&do=get&target=file.tgz' hooray
no funciona;)
wget -O hooray "http://domain.com/directory/4?action=AttachFile&do=get&target=file.tgz"
. Puede agregar la -c
opción para reanudar la descarga si se perdió la conexión al descargar el archivo.
wget
es tu amigo aquí :)