diff --git a/speak-logs.sh b/speak-logs.sh index 6c34815..130036f 100644 --- a/speak-logs.sh +++ b/speak-logs.sh @@ -28,6 +28,12 @@ sed -E 's,\* ([^ ]+),quoting action \1,g' | # Handle URLs sed -E 's,(https?|gopher)://[^ )>]+, \1 URL,g' | +# Handle some common emoticons +sed -E 's,\^_\^,happy eyes emoticon,g' | +sed -E 's,\\o\/,arms in air emoticon,g' | +sed -E 's,o\/,arm in air emoticon,g' | +sed -E 's,\\o,arm in air emoticon,g' | + # Add pauses sed -E 's,$,,' |