Skip to content

Instantly share code, notes, and snippets.

@kmanalo
Created July 9, 2015 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmanalo/394f58b23511cd502979 to your computer and use it in GitHub Desktop.
Save kmanalo/394f58b23511cd502979 to your computer and use it in GitHub Desktop.
Check for Tabs
#!/usr/bin/awk
BEGIN {
FS = "\t"
}
{
if (NF-1 > 0) {
print "has tab"
}
}
{ exit 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment