Last active
November 28, 2017 13:38
-
-
Save rmurphey/8364f4b91c1c0c4f0a92 to your computer and use it in GitHub Desktop.
retab
This file contains 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/sh | |
# retab a list of files from 2 spaces to 4 spaces | |
# todo: read the list of files from a file | |
for i in \ | |
client/scripts/components/describe.jsx \ | |
client/scripts/components/includes/header.jsx \ | |
client/scripts/components/index.jsx \ | |
client/scripts/components/layouts/default.jsx \ | |
client/scripts/components/modules/error.jsx \ | |
client/scripts/components/modules/file_upload.jsx \ | |
client/scripts/components/modules/link.jsx \ | |
client/scripts/components/modules/pictureBox.jsx \ | |
client/scripts/components/modules/product.jsx \ | |
client/scripts/components/modules/profile.jsx \ | |
client/scripts/components/product.jsx | |
do | |
sed -e 's/^/~/' -e ': r' -e 's/^\( *\)~ /\1 ~/' -e 't r' -e 's/~//' "${i}" > temp.notabs && mv temp.notabs "${i}" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment