#Bash #Snippets
Go to file
Alex Epstein 7bddda933a Making README clearer 2017-06-27 20:33:18 -04:00
crypt Adding comments to crypt 2017-06-27 10:39:27 -04:00
currency Adding comments to currency 2017-06-27 11:42:17 -04:00
movies Adding comments to movies 2017-06-27 10:47:16 -04:00
stocks Adding comments to stocks 2017-06-27 10:34:03 -04:00
weather Adding comments to weather 2017-06-27 10:34:32 -04:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-06-26 22:02:55 -04:00
ISSUE_TEMPLATE.md Adding issue template 2017-06-27 13:15:03 -04:00
LICENSE Initial commit 2017-06-26 17:55:08 -04:00
README.md Making README clearer 2017-06-27 20:33:18 -04:00
install.sh Adding Movies 2017-06-26 22:41:41 -04:00
uninstall.sh Adding Movies 2017-06-26 22:41:41 -04:00

README.md

Bash-Snippets

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

Version Codacy Badge platform license

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

crypt -e [original file] [encrypted file] # encrypts files
crypt -d [encrypted file] [output file] # decrypts files

Encryption Details

  • Uses AES 256 level encryption
  • Key is salted before creation
  • Password is never in plain text, and OpenSSL generates key based on password
  • Data is encrypted in Base64, so it can be used as plain text in an email. (Not usually necessary if attached as a file)

Tested With => .pdf, .txt, .docx, .doc, .png, .jpeg

CAUTION => Make sure to use different filenames, otherwise your file will be overwritten!

Movies

Quick search that grabs relevant information about a movie

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
  • To grab information on movies: omdbapi.com

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.