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 | |
# 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 | |
#============================================================================# | |
# ________ __ __ | |
# _____ _____ ____ \_____ \_/ |____ ____/ |_ | |
# / \\__ \ / \ / ____/\ __\ \/ /\ __\ | |
# | Y Y \/ __ \| | \/ \ | | > < | | | |
# |__|_| (____ /___| /\_______ \|__| /__/\_ \ |__| | |
# \/ \/ \/ \/ \/ | |
# | |
#============================================================================# |
NewerOlder