Skip to content

Instantly share code, notes, and snippets.

@MarkRose
Created March 20, 2012 21:44
Show Gist options
  • Save MarkRose/2141626 to your computer and use it in GitHub Desktop.
Save MarkRose/2141626 to your computer and use it in GitHub Desktop.
Convert spaces to tabs
#!/bin/sh
# Have to work with coders who use 4 spaces indentation instead of tabs? This is my shortcut to mending their ways.
for i in $(ls) ; do expand -t4 $i > $i.broken ; unexpand -t4 --first-only $i.broken > $i ; rm $i.broken ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment