Navigation Menu

Skip to content

Commit

Permalink
Adding script to convert tabs to spaces in all files in a directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
skytreader committed Jul 28, 2013
1 parent 8c2d2c6 commit e361824
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions components/tospaces.sh
@@ -0,0 +1,9 @@
for f in *py
do
expand -t 4 $f > temp
cat temp > $f
echo "Expanded $f"
done

rm temp

0 comments on commit e361824

Please sign in to comment.