Skip to content

Instantly share code, notes, and snippets.

@hokuma
Created October 2, 2015 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hokuma/abef57cf8a3f12048ea2 to your computer and use it in GitHub Desktop.
Save hokuma/abef57cf8a3f12048ea2 to your computer and use it in GitHub Desktop.
tab2space
#!/bin/sh
scss_files=`find app/assets/stylesheets -name "*.scss"`
for filepath in ${scss_files}
do
sed -i .orig s/$'\t'/' '/g ${filepath}
rm ${filepath}.orig
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment