#!/bin/bash
# <Control> I bet someone has written a program called 'dog', analogue to 'more' and 'less'
#
#   They have now. -- prb102, 27/2/06

#exec cat "$*" | sed -r 's/(\b)\w+(\b)/\1Woof!\2/g'
exec cat "$*" | sed -r 's/(\b)[a-z]+(\b)/\1""""\2/g;s/(\b)\w+(\b)/\1Bark\2/g;s/""""/woof/g'
