From 5db24ede8f7e2f6afc3bd15cb6f08a688127299c Mon Sep 17 00:00:00 2001 From: nnaaffffuu Date: Tue, 27 Apr 2021 02:47:59 +0500 Subject: [PATCH 1/2] Update README.md --- README.md | 38 ++++++++++++++++---------- install.sh | 1 + pasrjsontest.sh => parser_json_test.sh | 0 3 files changed, 24 insertions(+), 15 deletions(-) create mode 100644 install.sh rename pasrjsontest.sh => parser_json_test.sh (100%) diff --git a/README.md b/README.md index e1e57f5..7235e77 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,26 @@ -# Bank of Maldives CLI written in bash +# Bank of Maldives CLI +BML CLI written in Bash. This project is currently under development and a lot of things are broken. -## under dev, lots of things are broken. +## Requiments +`curl` `jq` -### can you pr ascii art lmao +### Ubuntu +`sudo apt install curl jq` -- Requiments -`curl` `jq` \ -Make sure you have both of them installed \ -`sudo apt install curl jq` on Ubuntu -### known bugs -- colored texts do not work in termux +### Fedora +`sudo dnf install curl jq` +### Arch +`sudo pacman -S curl jq` -### Use from source - Recommended +## Bugs +- Colored texts do not work in Termux +- Do **NOT** save passwords that contain one of the following characters +` | ^ $ & ; : ( )` + +## Installation + +### Recommended ``` git clone https://github.com/shihaamabr/bmlcli @@ -20,10 +28,10 @@ cd bmlcli/ chmod +x bml.sh ./bml.sh - ``` -### Installation - NOT Recommended (for now) -`curl -sL "https://raw.githubusercontent.com/shihaamabr/bmlcli/main/bml.sh" | sudo tee /usr/bin/bml-cli >/dev/null && sudo chmod 755 /usr/bin/bml-cli` -- Do NOT save password if password contain one of the following characters -` | ^ $ & ; : ( )` +### Not Recommended +``` +chmod +x install.sh +./install.sh +``` \ No newline at end of file diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..46301d0 --- /dev/null +++ b/install.sh @@ -0,0 +1 @@ +curl -sL "https://raw.githubusercontent.com/shihaamabr/bml-cli/main/bml.sh" | sudo tee /usr/bin/bml-cli >/dev/null && sudo chmod 755 /usr/bin/bml-cli \ No newline at end of file diff --git a/pasrjsontest.sh b/parser_json_test.sh similarity index 100% rename from pasrjsontest.sh rename to parser_json_test.sh From b92969d5c388084162356bf0c2892134f3a198eb Mon Sep 17 00:00:00 2001 From: nnaaffffuu Date: Tue, 27 Apr 2021 19:16:08 +0500 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7235e77..f72bc71 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ BML CLI written in Bash. This project is currently under development and a lot o ### Recommended ``` -git clone https://github.com/shihaamabr/bmlcli +git clone https://github.com/shihaamabr/bml-cli -cd bmlcli/ +cd bml-cli chmod +x bml.sh ./bml.sh