mirror of
https://github.com/imapsync/imapsync.git
synced 2025-06-10 14:44:32 +02:00
30 lines
537 B
Bash
Executable file
30 lines
537 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# $Id: paypal_run_test,v 1.1 2010/11/28 01:00:45 gilles Exp gilles $
|
|
|
|
set -e
|
|
#set -x
|
|
|
|
|
|
# Add path to commands at home
|
|
PATH=$PATH:/g/public_html/imapsync/paypal_reply
|
|
PERL5LIB=/g/public_html/imapsync/Mail-IMAPClient-3.25/lib
|
|
export PERL5LIB
|
|
|
|
test -f /g/public_html/imapsync/paypal_reply/paypal_functions \
|
|
&& . /g/public_html/imapsync/paypal_reply/paypal_functions
|
|
|
|
|
|
DATE_1=`date`
|
|
|
|
echo "==== paypal_reply_test ===="
|
|
paypal_reply_test
|
|
echo
|
|
|
|
|
|
|
|
DATE_2=`date`
|
|
|
|
echo "Debut : $DATE_1"
|
|
echo "Fin : $DATE_2"
|
|
echo "Yo Bery GOOD !"
|