From: ivan Date: Tue, 8 May 2007 16:51:13 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: freeside_1_7_3rc1~450 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=b4849057a49d407ffe30845ec43c96f5aee3c3a0;p=freeside.git *** empty log message *** --- diff --git a/bin/bill-nextmonth b/bin/bill-nextmonth new file mode 100755 index 000000000..813e84193 --- /dev/null +++ b/bin/bill-nextmonth @@ -0,0 +1,5 @@ +#!/bin/sh + +month=`date +%m` +nextmonth=`expr $month + 1` +/usr/local/bin/freeside-daily -d $nextmonth/1/`date +%Y` fs_daily diff --git a/bin/bill-nextyear b/bin/bill-nextyear new file mode 100755 index 000000000..63c4ad2be --- /dev/null +++ b/bin/bill-nextyear @@ -0,0 +1,5 @@ +#!/bin/sh + +year=`date +%Y` +nextyear=`expr $year + 1` +/usr/local/bin/freeside-daily -d 1/1/$nextyear fs_daily