Created
June 4, 2018 12:48
-
-
Save kohnakagawa/54a9ab2198a838ad58879d0e9f0c5cc9 to your computer and use it in GitHub Desktop.
tabインデントをspaceインデントに変換するコマンド
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/sh | |
find ./ -type f -name "*.cpp" -exec sed -i 's/\t/ /g' {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment