# # This little program helps find tabs in your files. To run it # $ perl checktabs.pl < # # Where there are tabs, it will print **** # while () { s/\t/****/gi; print $_; }