Skip to content

Instantly share code, notes, and snippets.

@hatzopoulos
Created June 5, 2018 00:42
Show Gist options
  • Save hatzopoulos/35783d86223edad0631e725c76a0d9d0 to your computer and use it in GitHub Desktop.
Save hatzopoulos/35783d86223edad0631e725c76a0d9d0 to your computer and use it in GitHub Desktop.
function tabs_or_spaces () {
spaces = $(grep -P '^ *' "$@" | wc -l);
tabs = $(grep -P '^\t' "$@" | wc -l);
echo "Number of Spaces: $spaces"
echo "Number of Tabs: $tabs"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment