This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
#============================================================================# | |
# ________ __ __ | |
# _____ _____ ____ \_____ \_/ |____ ____/ |_ | |
# / \\__ \ / \ / ____/\ __\ \/ /\ __\ | |
# | Y Y \/ __ \| | \/ \ | | > < | | | |
# |__|_| (____ /___| /\_______ \|__| /__/\_ \ |__| | |
# \/ \/ \/ \/ \/ | |
# | |
#============================================================================# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# pyv - Check the versions of the locally installed Python2 and Python3 | |
# Created by h8rt3rmin8r on 20190127 | |
# FUNCTION DECLARATIONS | |
function py2v() { | |
# Check the version of the local Python2 | |
python2 --version &> py2v-temp | |
cat py2v-temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
#================================================================================# | |
# ___ ___ ___ _ __ _____ _ _____ _ _ _____ | |
# | \/ | / _ \ | | / /| ___| | |_ _| \ | || ___| | |
# | . . |/ /_\ \| |/ / | |__ | | | | | \| || |__ | |
# | |\/| || _ || \ | __|| | | | | . ` || __| | |
# | | | || | | || |\ \| |___| |_____| |_| |\ || |___ | |
# \_| |_/\_| |_/\_| \_/\____/\_____/\___/\_| \_/\____/ | |
# | |
#________________________________________________________________________________ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
#==============================================================================# | |
# ________________ _____ ____ ________ __________ | |
# / ____/ _/_ __/ / ___// __ \/ _/ __ \/ ____/ __ \ | |
# / / __ / / / / \__ \/ /_/ // // / / / __/ / /_/ / | |
# / /_/ // / / / ___/ / ____// // /_/ / /___/ _, _/ | |
# \____/___/ /_/ /____/_/ /___/_____/_____/_/ |_| | |
# | |
#==============================================================================# | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
#=======================================================================================# | |
# | |
# ___________.___.____ ___________________ ____ _____________.____ | |
# \_ _____/| | | \_ _____/\_____ \| | \______ \ | | |
# | __) | | | | __)_ / ____/| | /| _/ | | |
# | \ | | |___ | \/ \| | / | | \ |___ | |
# \___ / |___|_______ \/_______ /\_______ \______/ |____|_ /_______ \ | |
# \/ \/ \/ \/ \/ \/ | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# [ build-json-object.sh ] | |
# | |
# Generate JSON objects filled with custom keys and values | |
# Created on 20200616 by h8rt3rmin8r | |
# | |
## Declare variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ screenshot_clean.sh ] | |
#> | |
#> About: | |
#> | |
#> Clean up the Ubuntu system screenshots from ~/Pictures | |
#> | |
#> All screenshots are renamed and moved into a new directory located at |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ future-value.sh ] | |
#> | |
#> Calculate future value based on compound interest | |
#> | |
#> USAGE: | |
#> | |
#> future-value.sh <OPTION> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
#>------------------------------------------------------------------------------ | |
#> | |
#> [ mshell ] | |
#> | |
#> Math shell (mshell) is a math handling script written for native Bash | |
#> | |
#> USAGE: | |
#> | |
#> mshell <TYPE> (<INPUT> ... <INPUT>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Bashtop glitchpad theme | |
#by glitchpad.com | |
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" | |
# example for white: "#FFFFFF", "#ff" or "255 255 255". | |
# All graphs and meters can be gradients | |
# For single color graphs leave "mid" and "end" variable empty. | |
# Use "start" and "end" variables for two color gradient | |
# Use "start", "mid" and "end" for three color gradient |
OlderNewer