I would like to check a number of files for the existence of tab characters (ASCII 0x09) in them. (To assert that my sources are tab-free before committing them to repository.)
Preferably with standard tools. Of course, grep springs to mind, but apparently grep "\t" file.txt
doesn't match...?!?
I am aware the answer is probably painfully simple, but I am at a loss.