deprecate

This commit is contained in:
Rob Muhlestein 2024-11-23 00:15:21 -05:00
parent 6b13675289
commit d51e7f3e87
2 changed files with 16 additions and 10 deletions

View File

@ -1,5 +1,11 @@
# Bash Template Command # Bash Template Command
*I no longer use this using [Bonzai][] instead. But it does have some good bash tricks to keep around including self-completion.*
[Bonzai]: <https://github.com/rwxrob/bonzai>
----
*This `README.md` is autogenerated.* *This `README.md` is autogenerated.*
This is a GitHub template repo that will be copied instead of forked to This is a GitHub template repo that will be copied instead of forked to

20
cmd
View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# shellcheck disable=SC2016 # shellcheck disable=SC2016
set -e set -e
# export PATH="/bin:/usr/bin:/usr/local/bin" # safer, if you can # export PATH="/bin:/usr/bin:/usr/local/bin" # safer, if you can
@ -13,15 +13,15 @@ set -e
declare -A HELP declare -A HELP
declare -A CONF declare -A CONF
declare black="\e[30m" # declare black=$'\e[30m'
declare red="\e[31m" # declare red=$'\e[31m'
declare green="\e[32m" # declare green=$'\e[32m'
declare yellow="\e[33m" # declare yellow=$'\e[33m'
declare blue="\e[34m" # declare blue=$'\e[34m'
declare magenta="\e[35m" # declare magenta=$'\e[35m'
declare cyan="\e[36m" # declare cyan=$'\e[36m'
declare white="\e[37m" # declare white=$'\e[37m'
declare reset="\e[0m" # declare reset=$'\e[0m'
_initialize() { _initialize() {
: # put initialization code here : # put initialization code here