summaryrefslogtreecommitdiffstats
path: root/cgit-email-filter.sh
blob: 11ed43fc052ba674dd58cbebaba258e6cb12b46f (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

IFS= read -r email
printf '%s\n' "$email" \
    | sed \
        -e 's/@/ (at) /' \
        -e 's/\./ (dot) /g'