aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-11-23 19:14:52 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-11-23 19:14:52 +0100
commit26602b85a3f679017b4366d3c1b2f6c5aa950aa5 (patch)
treeafcfe36665d0ed24dcb9cc2aa6ee0dcc0e22a3e3 /networking
parentfbf5e6363b11c3381d077c6bb24f224f4e3bc802 (diff)
downloadbusybox-w32-26602b85a3f679017b4366d3c1b2f6c5aa950aa5.tar.gz
busybox-w32-26602b85a3f679017b4366d3c1b2f6c5aa950aa5.tar.bz2
busybox-w32-26602b85a3f679017b4366d3c1b2f6c5aa950aa5.zip
wget: print the final newline only for non-tty output
$ busybox wget URL 2>&1 | cat Connecting to .... install.iso 0% | | 2629k 0:02:05 ETA install.iso 7% |** | 25.7M 0:00:23 ETA install.iso 16% |***** | 54.1M 0:00:14 ETA install.iso 20% |****** | 67.4M 0:00:15 ETA install.iso 25% |******** | 81.0M 0:00:14 ETA install.iso 30% |********* | 97.3M 0:00:13 ETA install.iso 36% |*********** | 117M 0:00:12 ETA install.iso 41% |************* | 134M 0:00:11 ETA install.iso 47% |*************** | 152M 0:00:10 ETA install.iso 54% |***************** | 176M 0:00:08 ETA install.iso 61% |******************* | 200M 0:00:06 ETA install.iso 66% |********************* | 215M 0:00:06 ETA install.iso 71% |********************** | 231M 0:00:05 ETA install.iso 75% |************************ | 244M 0:00:04 ETA install.iso 79% |************************* | 257M 0:00:03 ETA install.iso 84% |*************************** | 275M 0:00:02 ETA install.iso 91% |***************************** | 297M 0:00:01 ETA install.iso 99% |******************************* | 321M 0:00:00 ETA install.iso 100% |********************************| 323M 0:00:00 ETA <-- no empty line here $ function old new delta bb_progress_update 622 632 +10 progress_meter 152 158 +6 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 16/0) Total: 16 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 65262e19d..44c481a99 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -283,13 +283,15 @@ enum {
283#if ENABLE_FEATURE_WGET_STATUSBAR 283#if ENABLE_FEATURE_WGET_STATUSBAR
284static void progress_meter(int flag) 284static void progress_meter(int flag)
285{ 285{
286 int notty;
287
286 if (option_mask32 & WGET_OPT_QUIET) 288 if (option_mask32 & WGET_OPT_QUIET)
287 return; 289 return;
288 290
289 if (flag == PROGRESS_START) 291 if (flag == PROGRESS_START)
290 bb_progress_init(&G.pmt, G.curfile); 292 bb_progress_init(&G.pmt, G.curfile);
291 293
292 bb_progress_update(&G.pmt, 294 notty = bb_progress_update(&G.pmt,
293 G.beg_range, 295 G.beg_range,
294 G.transferred, 296 G.transferred,
295 (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len 297 (G.chunked || !G.got_clen) ? 0 : G.beg_range + G.transferred + G.content_len
@@ -297,7 +299,8 @@ static void progress_meter(int flag)
297 299
298 if (flag == PROGRESS_END) { 300 if (flag == PROGRESS_END) {
299 bb_progress_free(&G.pmt); 301 bb_progress_free(&G.pmt);
300 bb_putchar_stderr('\n'); 302 if (notty == 0)
303 bb_putchar_stderr('\n'); /* it's tty */
301 G.transferred = 0; 304 G.transferred = 0;
302 } 305 }
303} 306}