Updating to 1.1.0

This commit is contained in:
Alex Epstein 2017-06-27 22:48:23 -04:00
parent d73107b325
commit 89f520a8b7
7 changed files with 21 additions and 6 deletions

View File

@ -101,6 +101,8 @@ Quick search that grabs relevant information about a movie
* Then cd into the cloned directory: ```cd Bash-Snippets```
* Git checkout to the latest stable release ```git checkout v1.1.0```
* Run the guided install script with
```bash
./install.sh
@ -116,6 +118,19 @@ this will let you choose which scripts to install
```bash
./install.sh stocks
```
## Updating
With any of the installed tools you can automate the update by running it with the -u option or passing in update as the arguments
Ex.
```bash
stocks update
```
or
```bash
stocks -u
```
This will clone the repository and install the new versions of scripts that were installed, if you didn't install a certain tool this script will not install the new version of that tool.
## Uninstalling
* If you don't have the Bash-Snippets folder anymore clone the repository: ```git clone https://github.com/alexanderepstein/Bash-Snippets```

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.0"
currentVersion="1.1.0"
## uses openssl aes 256 cbc encryption to encrypt file salting it with password designated by user
encrypt()

View File

@ -3,7 +3,7 @@
base=""
exchangeTo=""
currentVersion="1.0.0"
currentVersion="1.1.0"
## Grabs the base currency from the user and validates it with all the possible currency
## types available on the API
getBase()

View File

@ -1,6 +1,6 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.0"
currentVersion="1.1.0"
if [[ $# == 0 ]]; then

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.0"
currentVersion="1.1.0"
checkInternet()
{

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.0"
currentVersion="1.1.0"
checkInternet()
{

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.0" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4
currentVersion="1.1.0" #This version variable should not have a v but should contain all other characters ex Github release tag is v1.2.4 currentVersion is 1.2.4
getWeather()
{