diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-05-19 21:32:42 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-05-19 21:32:42 +0200 |
commit | 0391bae406896b068c9e82b76aa6c26c7928efc7 (patch) | |
tree | 5130daf8cb2f5359008e6a2b295a1454a70f540e /README | |
parent | e1676198f01a1ba713e1bc9705db8df80cc47cfa (diff) |
README: make sure sfeed_update errors don't write to stderr
It would mess up the output since the progress bar writes to stderr aswell.
Diffstat (limited to 'README')
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1014,7 +1014,7 @@ Alternative: pv -l -s totallines config="${1:-$HOME/.sfeed/sfeedrc}" total=$(countfeeds "${config}") - sfeed_update "${config}" | progress "${total}" + sfeed_update "${config}" 2>&1 | progress "${total}" - - - |