mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
Adding description to each tool and created parent bash-snippets sheet
This commit is contained in:
parent
74add8a095
commit
df1bf4d234
32
sheets/bash-snippets
Normal file
32
sheets/bash-snippets
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Bash-Snippets
|
||||||
|
A collection of bash tools for heavy terminal users
|
||||||
|
|
||||||
|
# Tools
|
||||||
|
Cloudup: Backs up a users github repositories to your bitbucket account.
|
||||||
|
Crypt: A wrapper around openssl that facilitates encrypting and decrypting files.
|
||||||
|
Currency: A realtime currency converter.
|
||||||
|
Geo: Provides quick access for wan, lan, router, dns, mac, and ip geolocation data.
|
||||||
|
Movies: Provides relevant information about a certain movie.
|
||||||
|
Qrify: Converts strings or urls into a qr code.
|
||||||
|
Short: Unmasks shortended urls.
|
||||||
|
Siteciphers: Checks the available ciphers for the SSL of an https site.
|
||||||
|
Stocks: Finds the latest information on a certain stock.
|
||||||
|
Taste: A recommendation engine that provides 3 similar items based on some input topic.
|
||||||
|
Todo: A simplistic commandline todo list.
|
||||||
|
Weather: Provides a 3 day forecast on your current location or a specified location.
|
||||||
|
Ytview: Search and play youtube videos right from the terminal.
|
||||||
|
|
||||||
|
# Compatibility
|
||||||
|
All *nix machines (including Windows 10 bash subsystem)
|
||||||
|
|
||||||
|
# Install
|
||||||
|
https://github.com/alexanderepstein/Bash-Snippets#installing
|
||||||
|
|
||||||
|
# Upgrade
|
||||||
|
https://github.com/alexanderepstein/Bash-Snippets#updating
|
||||||
|
|
||||||
|
# Uninstall
|
||||||
|
https://github.com/alexanderepstein/Bash-Snippets#uninstalling
|
||||||
|
|
||||||
|
# License
|
||||||
|
MIT
|
@ -1,3 +1,6 @@
|
|||||||
|
# Cloudup
|
||||||
|
Description: Backs up a users github repositories to your bitbucket account.
|
||||||
|
|
||||||
# Backup all of a single github users repositories
|
# Backup all of a single github users repositories
|
||||||
cloudup -a
|
cloudup -a
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Crypt
|
||||||
|
Description: A wrapper around openssl that facilitates encrypting and decrypting files.
|
||||||
|
|
||||||
# Encrypt a file
|
# Encrypt a file
|
||||||
crypt -e fileToEncrypt outputFile
|
crypt -e fileToEncrypt outputFile
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Currency
|
||||||
|
Description: A realtime currency converter.
|
||||||
|
|
||||||
# To convert between currencies (guided)
|
# To convert between currencies (guided)
|
||||||
currency
|
currency
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Geo
|
||||||
|
Description: Provides quick access for wan, lan, router, dns, mac, and ip geolocation data.
|
||||||
|
|
||||||
# Get your wireless area network ip address
|
# Get your wireless area network ip address
|
||||||
geo -w
|
geo -w
|
||||||
|
|
||||||
|
@ -1,2 +1,5 @@
|
|||||||
|
# Movies
|
||||||
|
Description: Provides relevant information about a certain movie.
|
||||||
|
|
||||||
# Search for information on a specific movie
|
# Search for information on a specific movie
|
||||||
movies Inception
|
movies Inception
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Qrify
|
||||||
|
Description: Converts strings or urls into a qr code.
|
||||||
|
|
||||||
# Encode a single lined string into a qr code
|
# Encode a single lined string into a qr code
|
||||||
qrify This is an example string
|
qrify This is an example string
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Short
|
||||||
|
Description: Unmasks shortended urls.
|
||||||
|
|
||||||
# Unmask the true url behind a shortened link
|
# Unmask the true url behind a shortened link
|
||||||
Input: short tinyurl.com/jhkj
|
Input: short tinyurl.com/jhkj
|
||||||
Output: http://possiblemaliciouswebsiteornot.com
|
Output: http://possiblemaliciouswebsiteornot.com
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Siteciphers
|
||||||
|
Description: Checks the available ciphers for the SSL of an https site.
|
||||||
|
|
||||||
# Determine the available SSL ciphers for an https website
|
# Determine the available SSL ciphers for an https website
|
||||||
siteciphers github.com
|
siteciphers github.com
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Stocks
|
||||||
|
Description: Finds the latest information on a certain stock.
|
||||||
|
|
||||||
# Determine the latest stock information searching by company
|
# Determine the latest stock information searching by company
|
||||||
stocks Tesla
|
stocks Tesla
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Taste
|
||||||
|
Description: A recommendation engine that provides 3 similar items based on some input topic.
|
||||||
|
|
||||||
# Get the names of three recommendations based on supplied item
|
# Get the names of three recommendations based on supplied item
|
||||||
taste Catcher in the Rye
|
taste Catcher in the Rye
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Todo
|
||||||
|
Description: A simplistic commandline todo list.
|
||||||
|
|
||||||
# Add a task to your todo list
|
# Add a task to your todo list
|
||||||
todo -a This is an example task
|
todo -a This is an example task
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Weather
|
||||||
|
Description: Provides a 3 day forecast on your current location or a specified location.
|
||||||
|
|
||||||
# Get a 3 day forecast for your current location as determined by your ip address
|
# Get a 3 day forecast for your current location as determined by your ip address
|
||||||
weather
|
weather
|
||||||
|
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Ytview
|
||||||
|
Description: Search and play youtube videos right from the terminal.
|
||||||
|
|
||||||
# Search for youtube videos by title
|
# Search for youtube videos by title
|
||||||
ytview This is my search query
|
ytview This is my search query
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user