#!/bin/sh
#
# Find doubled words

grep -r -i --color '\(\<[-a-z.0-9]*\>\) \<\1\>' "$@"
