This file contains hidden or 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 | |
# Set variables for your name and email | |
FullName="" | |
EmailAddress="" | |
# Parse command line options | |
while getopts ":n:e:c:" opt; do | |
case $opt in | |
n) |
This file contains hidden or 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
https://dl.google.com/dl/androidjumper/mtp/current/AndroidFileTransfer.dmg |
This file contains hidden or 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 | |
# _____ __ __ __ | |
# / ___/___ _____________ / /_ / //_/___ ___ ____ ___ _____ | |
# \__ \/ _ \/ ___/ ___/ _ \/ __/ / ,< / _ \/ _ \/ __ \/ _ \/ ___/ | |
# ___/ / __/ /__/ / / __/ /_ / /| |/ __/ __/ /_/ / __/ / | |
# /____/\___/\___/_/ \___/\__/ /_/ |_|\___/\___/ .___/\___/_/ | |
# /_/ | |
# | |
# Part of Ironwood Vault. |
This file contains hidden or 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 | |
####### | |
# https://github.com/dschreck | |
# | |
# Generate a short name for a resource, service, disk, container, etc etc. | |
# Modify the adjs and nouns arrays to customize the name generation. | |
# | |
# Examples: | |
# $ ./bin/generate_short_name | |
# mystic-link |
This file contains hidden or 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 | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |