Created
June 17, 2016 04:59
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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