reasonableframework/fixindent.sh

4 lines
87 B
Bash
Raw Normal View History

2019-05-20 08:19:05 +00:00
#!/bin/bash
find ./ -type f -name "*.php" -exec sed -i 's/\t/ /g' {} \;
echo "done"