Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arcaduf/965ce5a1f2f515f7795606e93d11520a to your computer and use it in GitHub Desktop.
Save arcaduf/965ce5a1f2f515f7795606e93d11520a to your computer and use it in GitHub Desktop.
Convert \t into 4 spaces in each file inside a folder (and viceversa)
From \t to 4 spaces:
find . -type f -exec sed -i.orig 's/\t/ /g' {} +
From 4 spaces to \t:
find . -type f -exec sed -i.orig 's/ /\t/g' {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment