From 30766454148708f9c5a4d400b8c84003a3d31878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Fri, 28 Sep 2018 13:14:58 +0300 Subject: [PATCH] Handle some emoticons --- speak-logs.sh | 6 ++++++ 1 file changed, 6 insertions(+) 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,$,,' |