#Bash #Snippets
Go to file
Alex Epstein 296a623287 Create CODE_OF_CONDUCT.md 2017-06-26 22:02:55 -04:00
crypt Adding install and uninstall 2017-06-26 21:22:38 -04:00
currency Adding screenshots 2017-06-26 20:08:51 -04:00
stocks Can now enter company name 2017-06-26 20:45:42 -04:00
weather Adding screenshots 2017-06-26 20:08:51 -04:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-06-26 22:02:55 -04:00
LICENSE Initial commit 2017-06-26 17:55:08 -04:00
README.md Fixing readme 2017-06-26 21:56:03 -04:00
install.sh Adding encryption and decryption 2017-06-26 21:13:45 -04:00
uninstall.sh Adding encryption and decryption 2017-06-26 21:13:45 -04:00

README.md

Bash-Snippets

A collection of small bash scripts for heavy terminal users with no dependencies

Weather

Provides a 3 day forecast based on your ip address

To Be Added

[ ] Take in location as arguments

Stocks

Provides information about a certain stock symbol

Currency

Converts currency based on realtime exchange rates

To Be Added

[ ] Pass in arguments as well on top of the option to have it guide you through input

Encryption & Decryption

A wrapper for openssl that allows for quickly encrypting and decrypting files

API's Used

  • To get location based on ip address: ipinfo.io
  • To get and print weather based on a location: wttr.in
  • To grab the stock information in JSON format: alphavantage.co
  • To grab the latest exchange rate between currencies: api.fixer.io

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

./install.sh

To install individual scripts

Ex. Weather

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

./uninstall.sh

To uninstall individual scripts

Ex. Weather

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

Donate Donate

License

MIT License

Copyright (c) 2017 Alex Epstein

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.