summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-01-26 14:41:44 +0000
committerDries Buytaert <dries@buytaert.net>2001-01-26 14:41:44 +0000
commit32c89442d3e91c01f64211be372a0ae103025fa6 (patch)
tree2eece4811308b81aa0bfd12c306812ae2e203a55 /scripts
parentf974e58dbfaa79f48837ddf7910f57abd0368c74 (diff)
downloadbrdo-32c89442d3e91c01f64211be372a0ae103025fa6.tar.gz
brdo-32c89442d3e91c01f64211be372a0ae103025fa6.tar.bz2
- removed all tabs
Diffstat (limited to 'scripts')
-rw-r--r--scripts/php-clean7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/php-clean b/scripts/php-clean
index 5dc306a61..39209cf97 100644
--- a/scripts/php-clean
+++ b/scripts/php-clean
@@ -1,4 +1,5 @@
#!/bin/sh
-find . -name "*~" | xargs rm -f
-find . -name "DEADJOE" | xargs rm -f
-find . -name "*" -type f | xargs perl -wi -pe 's/\s+$/\n/'
+find . -name "*~" -type f | xargs rm -f
+find . -name "DEADJOE" -type f | xargs rm -f
+find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | xargs perl -wi -pe 's/\s+$/\n/'
+find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | xargs perl -wi -pe 's/\t/ /g'