Skip to content

Instantly share code, notes, and snippets.

@tophermade
Created June 17, 2016 04:59
Show Gist options
  • Save tophermade/381ca5f4729fb5c98454888b8ddb13b2 to your computer and use it in GitHub Desktop.
Save tophermade/381ca5f4729fb5c98454888b8ddb13b2 to your computer and use it in GitHub Desktop.
Replace spaces in current folder, with tabs @ 4 space depth in php, html, js, less, scss, and sass files.
#!/bin/bash
for file in *.php *.html *.js *.css *.less *.scss *.sass; do
echo "$file"
unexpand --first-only -t 4 "$file" > tempout.txt
mv tempout.txt "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment