4 lines
87 B
Bash
4 lines
87 B
Bash
|
#!/bin/bash
|
||
|
find ./ -type f -name "*.php" -exec sed -i 's/\t/ /g' {} \;
|
||
|
echo "done"
|