#!/bin/sh # Copyright (C) 2005 Krzysztof Kozlowski # License: GNU General Public License version 2 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # version 2 as published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # # Homepage: http://www.kozik.net.pl # # Ostatnia zmiana: 10.10.2005 # # Konwersja tresci maila do strony HTML if [ $# -ne 2 ]; then echo "Usage:" echo " $0 plik tytul" exit 0 fi # Naglowek : echo '' echo '' echo '' echo "$2" echo '' echo '' echo '' echo '' # Body : echo '
Data utworzenia strony: ' date echo '

' cat "$1" | sed -e "s/\$/
/" -e "s/http:\/\/[a-zA-z0-9\.\-\/_\?\&#=]*/&<\/a>/g" echo "

" # Stopka echo '' echo ''