Skip to content

Instantly share code, notes, and snippets.

@andmatand
Created April 30, 2012 18:22
Show Gist options
  • Save andmatand/2560751 to your computer and use it in GitHub Desktop.
Save andmatand/2560751 to your computer and use it in GitHub Desktop.
Replace tabs with 4 spaces
for i in *.lua; do expand -t 4 $i > $i.notabs && mv $i.notabs $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment