2021-04-25 14:59:31 +05:00
|
|
|
#!/bin/bash
|
2021-04-28 01:46:14 +05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Setting intial variables
|
2021-04-25 14:59:31 +05:00
|
|
|
BML_URL='https://www.bankofmaldives.com.mv/internetbanking/api'
|
|
|
|
COOKIE=/tmp/bmlcookie
|
2021-04-28 06:24:11 +05:00
|
|
|
CREDENTIALS=.env
|
2021-04-25 22:50:50 +05:00
|
|
|
|
|
|
|
#Setting terminal output colors
|
2021-04-25 14:59:31 +05:00
|
|
|
red=`tput setaf 1`
|
|
|
|
green=`tput setaf 2`
|
|
|
|
reset=`tput sgr0`
|
|
|
|
|
|
|
|
|
2021-04-28 06:24:11 +05:00
|
|
|
source readpass.sh
|