#!/bin/sh

arg='System.exit'

for file in `./search.sh $arg|cut -d: -f-1|sort|uniq`
do
	sed -i "s%$arg%//$arg%g" $file
done
