Delete install.sh #9

Merged
shihaam merged 3 commits from main into main 2021-04-28 11:42:10 +00:00
2 changed files with 23 additions and 30 deletions

View File

@ -2,38 +2,32 @@
BML CLI written in Bash. This project is currently under development and a lot of things are broken. BML CLI written in Bash. This project is currently under development and a lot of things are broken.
![photo_2021-04-28_14-59-35](https://user-images.githubusercontent.com/18140039/116385581-5c948300-a832-11eb-899b-9133501a4ae7.jpg) ![photo_2021-04-28_14-59-35](https://user-images.githubusercontent.com/18140039/116385581-5c948300-a832-11eb-899b-9133501a4ae7.jpg)
## Requirements
`curl` `jq`
# Requirements #### Ubuntu
`curl` `jq` `sudo apt install curl jq`
### Ubuntu #### Fedora
`sudo apt install curl jq` `sudo dnf install curl jq`
### Fedora #### Arch
`sudo dnf install curl jq` `sudo pacman -S curl jq`
### Arch ## Bugs
`sudo pacman -S curl jq` - Colored texts do not work in Termux
- Do **NOT** save passwords that contain one of the following characters
` | ^ $ & ; : ( )`
# Bugs ## Installation
- Colored texts do not work in Termux
- Do **NOT** save passwords that contain one of the following characters
` | ^ $ & ; : ( )`
# Installation **Recommended**
```
### Recommended git clone https://github.com/shihaamabr/bml-cli
```
git clone https://github.com/shihaamabr/bml-cli cd bml-cli
cd bml-cli chmod +x bml.sh
./bml.sh
chmod +x bml.sh ```
./bml.sh
```
### Not Recommended
```
chmod +x install.sh
./install.sh
```

View File

@ -1 +0,0 @@
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