summaryrefslogtreecommitdiffstats
path: root/kmail/mh2kmailr
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/mh2kmailr')
-rwxr-xr-xkmail/mh2kmailr4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/mh2kmailr b/kmail/mh2kmailr
index d88905aa..df76fec1 100755
--- a/kmail/mh2kmailr
+++ b/kmail/mh2kmailr
@@ -14,13 +14,13 @@ fi
MH_DIR=$1
-for d in `/usr/bin/find $MH_DIR -type d -print|sed -e :a -e 's/^.\{1,5\}$/ &/;ta'|sort`; do
+for d in `/usr/bin/tqfind $MH_DIR -type d -print|sed -e :a -e 's/^.\{1,5\}$/ &/;ta'|sort`; do
FOLDER=${d}.mbx
# remove old kmail folder if any
rm -f $FOLDER
-for f in `/usr/bin/find $d -type f -maxdepth 1 -print|sed -e :a -e 's/^.\{1,5\}$/ &/;ta'|sort`; do
+for f in `/usr/bin/tqfind $d -type f -maxdepth 1 -print|sed -e :a -e 's/^.\{1,5\}$/ &/;ta'|sort`; do
echo "From ???@??? 00:00:00 1997 +0000" >> $FOLDER
cat $f >> $FOLDER
done