Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- SEARCH_FOLDER="."
- for f in $(find $SEARCH_FOLDER -name '*.c' -or -name '*.h' -or -name '*.cpp' -or -name '*.hpp' -or -name 'Makefile');
- do
- echo $f;
- unexpand -t 4 "$f" > "$f.out"
- mv "$f.out" "$f"
- done
Advertisement
Add Comment
Please, Sign In to add comment