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 00a15e9d5939d24e627b25de50450c5a91047ed9
parent 8b54781539a8876fb413cd7552794b7fa6b5c23e
Author: Christoph Lohmann <20h@r-36.net>
Date:   Sun, 15 Dec 2019 18:34:08 +0100

Add rpurlget.

Diffstat:
bin/rpurlget | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/bin/rpurlget b/bin/rpurlget @@ -0,0 +1,8 @@ +#!/bin/sh + +url=$(rpview "$@" | awk '/URL:/ {print $2}' | tr -d '\r') +for i in $url +do + printf "%s\n" "${i}" +done +