diff options
author | ivan <ivan> | 2007-06-09 00:53:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-06-09 00:53:20 +0000 |
commit | bf6685163659f1b1be7efb9dfbf1a36c4cfce7f6 (patch) | |
tree | f5f373aa53c31e3a4c4df4a0344063e4bf8e8393 | |
parent | 9d689f9d05189f41b464b3a3316024f02cae8bb1 (diff) |
adding bill-for-next* hacks like bill-next* stuff but with -n flag, for skycatcher
-rwxr-xr-x | bin/bill-for-nextmonth | 5 | ||||
-rwxr-xr-x | bin/bill-for-nextyear | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/bin/bill-for-nextmonth b/bin/bill-for-nextmonth new file mode 100755 index 000000000..e1a33764e --- /dev/null +++ b/bin/bill-for-nextmonth @@ -0,0 +1,5 @@ +#!/bin/sh + +month=`date +%m` +nextmonth=`expr $month + 1` +/usr/local/bin/freeside-daily -d $nextmonth/1/`date +%Y` -n fs_daily diff --git a/bin/bill-for-nextyear b/bin/bill-for-nextyear new file mode 100755 index 000000000..1430a5898 --- /dev/null +++ b/bin/bill-for-nextyear @@ -0,0 +1,5 @@ +#!/bin/sh + +year=`date +%Y` +nextyear=`expr $year + 1` +/usr/local/bin/freeside-daily -d 1/1/$nextyear -n fs_daily |