Created
September 3, 2021 13:55
-
-
Save kbsali/b5dd6f12ca55ec269e7de3645aff341e to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
for a in $(find src/ -type f);do expand -t2 $a > tmp && cp tmp $a;done | |
for a in $(grep -P "\t" .* -l);do expand -t2 $a > tmp && cp tmp $a;done | |
for a in $(grep -P "\t" * -l --exclude-dir={node_modules,src,static});do expand -t2 $a > tmp && cp tmp $a;done | |
rm tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment