notes/Mutt link view for email mbox mailbox-Y0gPX89B.sh
#!/bin/bash

#Author Kris Occhipinti https://filmsbykris.com
#Copyright Jan 10th 2018
#License GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt

#Description: to be used to view links in a mailbox/mbox file
#created for use with Mutt


message=$(cat)
#echo "$message"|sed 's/=$//g'|sed 's/=3D/=/g'|sed ':a;N;$!ba;s/\n//g'|sed 's/"/\n/g'|sed 's/http/\nhttp/g'|grep http|less

echo "$message"|\
  sed 's/=$//g'|\
  sed 's/=3D/=/g'|\
  sed ':a;N;$!ba;s/\n//g'|\
  sed 's/"/\n/g'|\
  sed 's/http/\nhttp/g'|\
  grep http|\
  less

syntax highlighted by Code2HTML, v. 0.9.1