#!/bin/sh -e

for f; do
	 grep -rlZ $f ~/chat/irc/ | xargs -0 -r sed -i 's/'$f'/****/g';
done
