From 109265f96bd5c774161ef96d13265259aa6ed4ef Mon Sep 17 00:00:00 2001 From: Alex Epstein Date: Mon, 26 Jun 2017 21:20:38 -0400 Subject: [PATCH] Adding install and uninstall --- README.md | 35 +++++++++++++++++++++++++++++++++++ crypt/uninstall.sh | 0 2 files changed, 35 insertions(+) mode change 100644 => 100755 crypt/uninstall.sh diff --git a/README.md b/README.md index ed50403..6c11482 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,41 @@ A wrapper for openssl that allows for quickly encrypting and decrypting files #### Inspired by: Ruby-Scripts +## 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 diff --git a/crypt/uninstall.sh b/crypt/uninstall.sh old mode 100644 new mode 100755