Adding install and uninstall

This commit is contained in:
Alex Epstein 2017-06-26 21:20:38 -04:00
parent 0410f65b19
commit 109265f96b
2 changed files with 35 additions and 0 deletions

View File

@ -64,6 +64,41 @@ A wrapper for openssl that allows for quickly encrypting and decrypting files
#### Inspired by: <a href="https://github.com/jakewmeyer/Ruby-Scripts">Ruby-Scripts</a>
## Installing
* First clone the repository: ```git clone https://github.com/alexanderepstein/Bash-Snippets```
* Then cd into the cloned directory: ```cd Bash-Snippets```
#### To install all scripts
```bash
./install.sh
```
#### To install individual scripts
Ex. Weather
```bash
cd weather
./install.sh
```
## Uninstalling
* If you don't have the Bash-Snippets folder anymore clone the repository: ```git clone https://github.com/alexanderepstein/Bash-Snippets```
* cd into the Bash-Snippets directory: ```cd Bash-Snippets```
#### To uninstall all scripts
```bash
./uninstall.sh
```
#### To uninstall individual scripts
Ex. Weather
```bash
cd weather
./uninstall.sh
```
## Donate
If this project helped you in any way and you feel like buying a broke college kid a cup of coffee

0
crypt/uninstall.sh Normal file → Executable file
View File