Updating to 1.9.0

This commit is contained in:
Alex Epstein 2017-07-04 09:35:20 -04:00
parent 0fde9f7999
commit ff7a234406
14 changed files with 39 additions and 14 deletions

View File

@ -93,6 +93,18 @@ If you want to bypass to guided input you can pass in 3 arguments and it will ru
ex.```currency [baseCurrency] [exchangeToCurrency] [amountBeingExchanged]``` ex.```currency [baseCurrency] [exchangeToCurrency] [amountBeingExchanged]```
so a valid use case would be ```currency USD EUR 12.35``` so a valid use case would be ```currency USD EUR 12.35```
## Cloudup
A tool that facilitates backing up github repositories to bitbucket
<div align="center">
<img height="75%" width="75%" src="https://github.com/alexanderepstein/Bash-Snippets/blob/master/cloudup/cloudup.png?raw=true">
</div>
## Encryption & Decryption ## Encryption & Decryption
@ -188,7 +200,7 @@ Gets the link that is being masked by a url shortner
* Then cd into the cloned directory: ```cd Bash-Snippets``` * Then cd into the cloned directory: ```cd Bash-Snippets```
* Git checkout to the latest stable release ```git checkout v1.8.0``` * Git checkout to the latest stable release ```git checkout v1.9.0```
* Run the guided install script with * Run the guided install script with
```bash ```bash

View File

@ -2,12 +2,25 @@
# Bash-Snippets Changelog # Bash-Snippets Changelog
## Version 1.9.0
</div>
### Changes
* Added cloudup component
### Bugfixes
* Fixing bug in ytview when search results are sparse
<div align="center">
## Version 1.8.0 ## Version 1.8.0
</div> </div>
### Changes ### Changes
* Added ytview componenet * Added ytview component
### Bugfixes ### Bugfixes
* Using ```$@``` instead of ```$1 $2 $3...``` in all applicable scripts * Using ```$@``` instead of ```$1 $2 $3...``` in all applicable scripts

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
search="0" search="0"
insensitive="" insensitive=""

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
private="0" private="0"
all="0" all="0"

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
checkOpenSSL() checkOpenSSL()

View File

@ -3,7 +3,7 @@
base="" base=""
exchangeTo="" exchangeTo=""
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -6,7 +6,7 @@
# Github: https://github.com/jakewmeyer # Github: https://github.com/jakewmeyer
# #
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

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

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.0" currentVersion="1.9.0"
configuredClient="" configuredClient=""
source ~/.bashrc ## allows grabbing enviornment variable source ~/.bashrc ## allows grabbing enviornment variable
apiKey=$TASTE_API_KEY apiKey=$TASTE_API_KEY

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein # Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.8.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.9.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
LANG="${LANG:-en}" LANG="${LANG:-en}"
locale=$(echo $LANG | cut -c1-2) locale=$(echo $LANG | cut -c1-2)
configuredClient="" configuredClient=""

View File

@ -6,7 +6,7 @@ if [[ -d $HOME/.cache/ytview ]];then rm -rf $HOME/.cache/ytview/ ;fi
player="" player=""
configuredClient="" configuredClient=""
currentVersion="1.8.0" currentVersion="1.9.0"
flag="" flag=""
## This function determines which http get tool the system has installed and returns an error if there isnt one ## This function determines which http get tool the system has installed and returns an error if there isnt one