-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathncrc
20 lines (18 loc) · 781 Bytes
/
ncrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#/usr/bin/env bash
################################################################################
# 0. NCJ / NCONJURE
################################################################################
# Create an installment loan
# ----------------------------------------------------------------------------
function loan
{
ncj account create --region=VA
ncj loan apply --current --with-lender-decision --disbursement_amount=1000 --product=netcredit
}
# Create a line of credit using ncj
# ----------------------------------------------------------------------------
function loc
{
ncj account create --region=UT
ncj loan apply --current --with-lender-decision --disbursement_amount=500 --product=netcredit_line_of_credit
}