View split-vss2xhtml.sh
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/sh | |
## | |
## FILE: split-vss2xhtml.sh | |
## | |
## DESCRIPTION: Split VSS/SVG Sections | |
## | |
## Exit Point | |
die() { | |
[ -n "$2" ] && echo "$2" |
View gogs-clonecreatepush.sh
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/sh | |
## | |
## FILE: gogs-clonecreatepush.sh | |
## | |
## DESCRIPTION: Git Clone, Gogs Create, Git Push | |
## | |
## AUTHOR: J. M. Becker | |
## | |
## Exit Point | |
die() { |
View pulp-autocreate.sh
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/sh | |
## | |
## FILE: pulp-autocreate.sh | |
## | |
## DESCRIPTION: Auto Create Mirror Repositories | |
## | |
REPO_ARGS=' | |
--repo-id=remi-7-x86_64 --feed "http://mirror5.layerjet.com/remi/enterprise/7/remi/x86_64/" | |
--repo-id=remi-7-x86_64-safe --feed "http://mirror5.layerjet.com/remi/enterprise/7/safe/x86_64/" |
View vmware.py
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 python | |
# (c) 2016, J. M. Becker <cyberpunkspike@gmail.com> | |
# GPL V3 | |
###################################################################### | |
''' | |
VMware Inventory Script | |
======================= |
View vmware.py
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 python | |
# -*- coding: utf-8 -*- | |
''' | |
VMware Inventory Script | |
======================= | |
''' | |
# import logging | |
# import time | |
# import os.path | |
# import subprocess |