Herramienta que permite depurar, indentar, tokenizar y convertir a HTML scripts sed.
$ echo "Linux es un sistema genial" | sedsed -d -e 's/Linux/GNULinux/g'
$ echo "Linux es un sistema genial" | sedsed -t 's/Linux/GNULinux/g'
$ sedsed -H -e 's/Linux/GNULinux/g' > script.html
$ sedsed -d -f script.sed archivo_entrada.txt
$ echo "Linux es un sistema genial" | sedsed -t -d 's/Linux/GNULinux/g'