rohrpost

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

rpurlget (114B)


      1 #!/bin/sh
      2 
      3 url=$(rpview "$@" | awk '/URL:/ {print $2}' | tr -d '\r')
      4 for i in $url
      5 do
      6 	printf "%s\n" "${i}"
      7 done
      8