bml-cli/bml.sh
Shihaam Abdul Rahman 307242216b Add More Colors
2021-04-28 19:18:59 +05:00

26 lines
455 B
Bash
Executable File

#!/bin/bash
#Setting intial variables
BML_URL='https://www.bankofmaldives.com.mv/internetbanking/api'
COOKIE=/tmp/bmlcookie
CREDENTIALS=.env
#Setting terminal output colors
red=`tput setaf 1`
green=`tput setaf 2`
brown=`tput setaf 3`
blue=`tput setaf 4`
pink=`tput setaf 5`
cyan=`tput setaf 6`
gray=`tput setaf 7`
darkgray=`tput setaf 8`
lightred=`tput setaf 9`
lightgreen=`tput setaf 10`
yellow=`tput setaf 11`
reset=`tput sgr0`
source readpass.sh