Hallo Orm,
Am 30. Juli 2003 schrieb Orm Finnendahl:
mailto=`cat | grep @ | sed -e 's/^.*: ([^; ]+@[^; /]+).*$/\1/g'`
another useless use of cat, grep and ^,$,/g in regexp ...
mailto=`sed -ne '/@/s/.*: ([^; ]+@[^; /]+).*/\1/p'`
macht so etwa das gleiche.
Torsten