mirror of
https://github.com/imapsync/imapsync.git
synced 2024-11-17 08:12:48 +01:00
31 lines
541 B
Bash
Executable File
31 lines
541 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $Id: paypal_run_petite,v 1.5 2011/03/23 17:02:39 gilles Exp $
|
|
|
|
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.28/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_petite ===="
|
|
paypal_reply_petite "$@"
|
|
echo
|
|
|
|
|
|
|
|
DATE_2=`date`
|
|
|
|
echo "Debut : $DATE_1"
|
|
echo "Fin : $DATE_2"
|
|
echo "Yo Bery GOOD !"
|