Skip to content

Instantly share code, notes, and snippets.

@grosscol
Created August 29, 2025 16:56
Show Gist options
  • Save grosscol/8b23fa5cec903d0cbb64418522323b76 to your computer and use it in GitHub Desktop.
Save grosscol/8b23fa5cec903d0cbb64418522323b76 to your computer and use it in GitHub Desktop.
Count_tabs_per_line.sh
# checking the unbalanced tabs by counting the number of tabs per line.
cat myfile.tsv |\
tr -d -c "\t\n" |\
awk '{print length;}' |\
sort -n |\
uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment