summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-06-09 00:53:20 +0000
committerivan <ivan>2007-06-09 00:53:20 +0000
commitbf6685163659f1b1be7efb9dfbf1a36c4cfce7f6 (patch)
treef5f373aa53c31e3a4c4df4a0344063e4bf8e8393
parent9d689f9d05189f41b464b3a3316024f02cae8bb1 (diff)
adding bill-for-next* hacks like bill-next* stuff but with -n flag, for skycatcher
-rwxr-xr-xbin/bill-for-nextmonth5
-rwxr-xr-xbin/bill-for-nextyear5
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