rohrpost

A commandline mail client to change the world as we see it.
git clone git://r-36.net/rohrpost
Log | Files | Refs | LICENSE

commit 4562104e306188848f94dc21175be771e3dcd844
parent 00a15e9d5939d24e627b25de50450c5a91047ed9
Author: Christoph Lohmann <20h@r-36.net>
Date:   Sun, 15 Dec 2019 18:34:35 +0100

Use printf instead of echo in rpurldl.

Diffstat:
bin/rpurldl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/rpurldl b/bin/rpurldl @@ -10,7 +10,7 @@ fi url=$(rpview "$@" | awk '/URL:/ {print $2}' | tr -d '\r') for i in $url do - echo $i + printf "%s\n" "${i}" $DOWNLOADER "$i" done