Skip to content

Instantly share code, notes, and snippets.

@flaviovdf
Created May 9, 2013 11:07
Show Gist options
  • Save flaviovdf/5546884 to your computer and use it in GitHub Desktop.
Save flaviovdf/5546884 to your computer and use it in GitHub Desktop.
tabs to spaces
#recommend running on source folders and not project folder.
find ./ -type f \( ! -regex '.*/\..*' \) -exec sed -i 's/\t/ /g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment