Comment 3 for bug 1196907

Revision history for this message
Andrew McDermott (frobware) wrote : Re: busybox wget v1.20.2 fails to copy file(s) properly

Yes.

# root@genericarmv8:~# wget
BusyBox v1.21.1 (2013-07-17 13:47:15 BST) multi-call binary.

Usage: wget [-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document FILE]
        [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]
        [-U|--user-agent AGENT] [-T SEC] URL...

On my host:

$ ls -l *.gz |grep mauve-tar.gz
-rw-rw-r-- 1 aim aim 16604318 Jul 16 08:31 mauve-tar.gz

=== Running wget on the model ===

root@genericarmv8:~# wget -q http://spicy:8080/mauve-tar.gz
root@genericarmv8:~# ls -l *.gz
-rw-r--r-- 1 root root 16573732 Jul 18 17:07 mauve-tar.gz

=== Switching to curl ===

root@genericarmv8:~# curl --version
curl 7.30.0 (aarch64-oe-linux-gnu) libcurl/7.30.0 GnuTLS/2.12.23 zlib/1.2.8
Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: Largefile NTLM NTLM_WB SSL libz TLS-SRP

root@genericarmv8:~# curl -s -O http://spicy:8080/mauve-tar.gz
root@genericarmv8:~# ls -l *.gz
-rw-r--r-- 1 root root 16604318 Jul 18 17:14 mauve-tar.gz

which matches the original on my host.