below scripts stuck when i added id variable to a path. this script supposed to copy message files (from 18-22 june) from a zimbra store/mailbox of a user and copied it into /tmp
#!/bin/bash echo "Username? then [ENTER]:" read username id=`/opt/zimbra/bin/mysql -e 'use zimbra;select id,comment from mailbox;' | grep $username | cut -f 1` mkdir /tmp/$username 2>/dev/null for i in `egrep '(1[8-9]|2[0-2]) Jun 2012' /opt/zimbra/store/0/$id/msg/0/* | cut -d : -f 1 | uniq` do cp $i /tmp/$username done there must be something that i had missed... thanks -- Regards, Umarzuki Mochlis http://debmal.my -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/CAHW9mbw+hdiphHS+G_=4zta8zdagy9afvmruaq4tvvrm5+k...@mail.gmail.com

