# Bash-Snippets ##### A collection of small bash scripts for heavy terminal users with no dependencies ![Version](https://img.shields.io/github/release/alexanderepstein/Bash-Snippets.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a4bf023a3d0d499abc9d2bf14b296a14)](https://www.codacy.com/app/alexanderepstein/Bash-Snippets?utm_source=github.com&utm_medium=referral&utm_content=alexanderepstein/Bash-Snippets&utm_campaign=Badge_Grade) [![Build Status](https://travis-ci.org/alexanderepstein/Bash-Snippets.svg?branch=master)](https://travis-ci.org/alexanderepstein/Bash-Snippets) ![platform](https://img.shields.io/badge/platform-OSX%2C%20Linux%20%26%20Windows-blue.svg) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=plastic)]() ### All of these scripts have been heavily tested on macOS and Linux ### Most of these scripts have been tested on Windows 10 and the official developer bash instance. Does not work with Cygwin or Mysys2. #### Looking for maintainers: I have been and probably will forever be too busy to maintain this properly on my own. I am looking for a few others to help out, if you want to be a maintainer either email me or raise an issue. I will probably only accept maintainers who have made a few contributions (no matter how small) and seem to understand the vision of this project.
## Tools
Cheat The fastest way to find {command options|code pieces} you need Supports multiple languages and many bash commands
Cloudup A tool that facilitates backing up github repositories to bitbucket If you have ever felt the fear of the github unicorn this could be your savior Furthermore you can backup the repositories of any github user to your bitbucket. Backup all github repositories of the designated user at once with the -a option. Or run it with no flags and backup individual repositories.
Crypt A wrapper for openssl that allows for quickly encrypting and decrypting files ```bash 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 * Encrypted data is encoded 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!
Cryptocurrency Converts Cryptocurrency based on realtime exchange rates of the top 10 cryptos
Originally written by: [Jonas-Taha El Sesiy](https://github.com/elsesiy) Heavy modifications by: [Alex Epstein](https://github.com/alexanderepstein)
Currency Converts currency based on realtime exchange rates
If you want to bypass to guided input you can pass in 3 arguments and it will run from there ex.```currency [baseCurrency] [exchangeToCurrency] [amountBeingExchanged]``` so a valid use case would be ```currency USD EUR 12.35```
Geo Provides data for wan, lan, router, dns, mac, and ip geolocation
Written by: [Jake Meyer](https://github.com/jakewmeyer)
Lyrics Grab lyrics for a given song quickly from the command line.
Meme A lightning fast meme generator.
Movies Quick search that grabs relevant information about a movie
Newton Performs numerical calculations all the way up to symbolic math parsing.
Qrify Takes any string of text and turns it into a qr code This is useful for sending links or saving a string of commands to your phone
Written by: [Linyos Torovoltos](http://github.com/linyostorovovoltos)
Short Gets the link that is being masked by a url shortner
Siteciphers Check which ciphers are enabled / disabled for a given https site. Sometimes ciphers are deemed vulnerable, so when you are changing configuration, this can be used to confirm that the cipher truly is disabled. Some browsers (For example old versions of IE) don't support some of the newer ciphers, which would be a good example of when a SysAdmin would need a list of currently supported ciphers so that changes can be made.
Stocks Provides information about a certain stock symbol
Taste Recommendation engine that provides three similar items like the supplied item Also can provide information on a given item Valid items are: shows, books, music, artists, movies, authors, games
### Needs an API Key (don't worry it's free) * Get the API key [here](https://tastedive.com/account/api_access) * After getting the API key run the following line ```export TASTE_API_KEY="yourAPIKeyGoesHere" >> ~/.bash_profile```
Todo A simplistic command line todo list
Transfer Quickly transfer files from the command line.
Weather Provides a 3 day forecast With no arguments it will grab the weather for your location as determined by your ip
With arguments you can pass in a city or country and get the weather in that area Also can show the current moon phase
Youtube-Viewer Provides a way to watch youtube videos from the terminal. You can use ```ytview -c [channel name]``` to see recent videos by that artist. You can use ```ytview -s [videoToSearch]``` or just ```ytview [videoToSearch]``` to search for videos.
Written by: [Linyos Torovoltos](http://github.com/linyostorovovoltos)
## API's Used
All API's * To get location based on ip address: [ipinfo](https://ipinfo.io) * To get and print weather based on a location: [wttr](http://wttr.in) * To grab the stock information in JSON format: [alphavantage](https://www.alphavantage.co) * To grab the latest exchange rate between currencies: [fixer](http://fixer.io) * To grab information on movies: [omdbapi](http://www.omdbapi.com/) * To grab recommendations based on an item: [tastedive](https://tastedive.com) * To determine masked link behind url shortner: [ki.tc](http://ki.tc) * To grab cheatsheets for commands and languages: [cheat](http://cheat.sh/) * To encode text into a qr code: [qrenco](http://qrenco.de) * To grab a list of a users repositories: [github](https://developer.github.com/v3/) * To upload a repository to bitbucket: [bitbucket](https://developer.atlassian.com/bitbucket/api/2/reference/) * To get your WAN ip address: [ipify](https://www.ipify.org/) * To grab the latest exchange rate between cryptocurrencies to standard currencies: [coinmarketcap](https://coinmarketcap.com/api/) * To perform symbolic math and other computations: [newton](https://newton.now.sh) * To transfer files: [transfer](https://transfer.sh) * To grab lyrics from a song: [lyrics.ovh](http://docs.lyricsovh.apiary.io) * To generate memes: [MemeGen](https://memegen.link) * To get a chart of the top 10 cryptocurrencies [rate.sx](http://rate.sx)
## Installing
For macOS via homebrew / Linux via linuxbrew ```bash brew install bash-snippets # installs all tools brew install bash-snippets --without-all-tools --with-newton --with-weather # specifying install for individual tools ```
Apt Package Manager ```bash sudo add-apt-repository ppa:navanchauhan/bash-snippets sudo apt update sudo apt install bash-snippets ```
Git Install * First clone the repository: ```bash git clone https://github.com/alexanderepstein/Bash-Snippets ``` * Then cd into the cloned directory: ```bash cd Bash-Snippets ``` * Git checkout to the latest stable release ```bash git checkout v1.22.1 ``` * Run the guided install script with ```bash ./install.sh ``` this will let you choose which scripts to install * Install all the scripts ```bash ./install.sh all ``` * Install an individual script ```bash ./install.sh stocks ```
## Updating
For macOS if installed via homebrew / Linux if installed via linuxbrew ```bash brew upgrade bash-snippets ```
Apt Package Manager ```bash sudo apt update sudo apt upgrade ```
Git Update 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
For macOS if installed via homebrew / Linux if installed via linuxbrew ```bash brew uninstall bash-snippets ```
Apt Package Manager ```bash sudo apt remove bash-snippets ```
Git Uninstall * If you don't have the Bash-Snippets folder anymore clone the repository: ```bash git clone https://github.com/alexanderepstein/Bash-Snippets ``` * cd into the Bash-Snippets directory: ```bash cd Bash-Snippets ``` #### To go through a guided uninstall ```bash ./uninstall.sh ``` #### To uninstall all installed bash-snippets ```bash ./uninstall.sh all ```
## Donate If this project helped you in any way and you feel like supporting me [![Donate](https://img.shields.io/badge/Donate-Venmo-blue.svg)](https://venmo.com/AlexanderEpstein) [![Donate](https://img.shields.io/badge/Donate-SquareCash-green.svg)](https://cash.me/$AlexEpstein) ###### BTC: 38Q5VbH63MtouxHu8BuPNLzfY5B5RNVMDn ###### ETH: 0xf7c60C06D298FF954917eA45206426f79d40Ac9D ###### LTC: LWZ3T19YUk66dgkczN7dRhiXDMqSYrXUV4 #### Inspired by: [Ruby-Scripts](https://github.com/jakewmeyer/Ruby-Scripts) ## 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.