login

<     >

2020-04-03 13:46:44 (UTC-03:00)

Marcel Rodrigues <marcelgmr@gmail.com>

remove formatting artifacts from README

$ mandoc -T utf8 mpb.1 > fmtREADME
$ sed 's:.\x08::g' < fmtREADME > README
$ rm fmtREADME

diff --git a/README b/README
index bd689f5..f57c756 100644
--- a/README
+++ b/README
@@ -2,34 +2,34 @@ MPB(1)                      General Commands Manual                     MPB(1)
 
 
 
-NNAAMMEE
+NAME
        mpb - more progress bar
 
-SSYYNNOOPPSSIISS
-       mmppbb [--oo] [--vv] [--ss] [--ww_W_I_D_T_H] [_T_O_T_A_L]
+SYNOPSIS
+       mpb [-o] [-v] [-s] [-wWIDTH] [TOTAL]
 
-DDEESSCCRRIIPPTTIIOONN
-       Show progress of lines read from _s_t_d_i_n in _s_t_d_e_r_r.
+DESCRIPTION
+       Show progress of lines read from stdin in stderr.
 
-OOPPTTIIOONNSS
-       --oo     output _s_t_d_i_n to _s_t_d_o_u_t
+OPTIONS
+       -o     output stdin to stdout
 
-       --vv     show current line
+       -v     show current line
 
-       --ss     show activity spinner
+       -s     show activity spinner
 
-       --ww_W_I_D_T_H
+       -wWIDTH
               set width of progress bar (default = 32)
 
-       _T_O_T_A_L  number of lines expected to be read until completion of task
-              if _T_O_T_A_L is not given or it is zero, the progress bar will not
+       TOTAL  number of lines expected to be read until completion of task
+              if TOTAL is not given or it is zero, the progress bar will not
               be shown
 
-EEXXAAMMPPLLEESS
-       Use sseeqq((11)) to test drive mmppbb:
+EXAMPLES
+       Use seq(1) to test drive mpb:
               $ n=5000; seq 1 $n | mpb -vsw50 $n
 
-       Show progress of ttaarr((11)) extraction:
+       Show progress of tar(1) extraction:
               $ f=foo.tgz; n=$(tar tf $f | wc -l); tar vxf $f | mpb -v $n