Fixed problem with spaces in path.

This commit is contained in:
Markus Birth 2014-05-10 22:57:26 +02:00
parent 359ec4da06
commit d06f873047

View File

@ -1,5 +1,5 @@
#!/bin/bash
HERE=`dirname $0`
find $1 -type d -print0 | while read -d $'\0' i; do
$HERE/sqlite_cleanup.sh "$i"
"$HERE/sqlite_cleanup.sh" "$i"
done