Skip to content

Instantly share code, notes, and snippets.

View h8rt3rmin8r's full-sized avatar

h8rt3rmin8r h8rt3rmin8r

View GitHub Profile
@h8rt3rmin8r
h8rt3rmin8r / pyv.sh
Created January 27, 2019 10:44
Check the versions of your system's locally installed Python2 and Python3
#! /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
@h8rt3rmin8r
h8rt3rmin8r / man2txt.sh
Created January 26, 2019 13:01
Translate Unix manual pages into text files
#! /bin/bash
#============================================================================#
# ________ __ __
# _____ _____ ____ \_____ \_/ |____ ____/ |_
# / \\__ \ / \ / ____/\ __\ \/ /\ __\
# | Y Y \/ __ \| | \/ \ | | > < | |
# |__|_| (____ /___| /\_______ \|__| /__/\_ \ |__|
# \/ \/ \/ \/ \/
#
#============================================================================#