Skip to content

Instantly share code, notes, and snippets.

@kohnakagawa
Created June 4, 2018 12:48
Show Gist options
  • Save kohnakagawa/54a9ab2198a838ad58879d0e9f0c5cc9 to your computer and use it in GitHub Desktop.
Save kohnakagawa/54a9ab2198a838ad58879d0e9f0c5cc9 to your computer and use it in GitHub Desktop.
tabインデントをspaceインデントに変換するコマンド
#!/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