#!/bin/sh

pattern=`printf "\t"`
bad_files=`find . -name '*.texi' -print0 | xargs -0 grep -l -e "$pattern"`

echo $bad_files

