2021-08-08 20:34:35 -05:00
|
|
|
# Bash Command Template
|
2021-08-06 12:48:11 -05:00
|
|
|
|
2021-08-09 09:22:17 -05:00
|
|
|
This is a GitHub template repo that will be copied instead of forked to
|
|
|
|
create a new Bash command with a command something like this:
|
2021-08-08 20:34:35 -05:00
|
|
|
|
|
|
|
```
|
2021-08-09 09:22:17 -05:00
|
|
|
gh repo create rwxrob/mycmd -p rwxrob/template-bash-command
|
2021-08-08 20:34:35 -05:00
|
|
|
```
|
|
|
|
|
2021-08-09 09:22:17 -05:00
|
|
|
Obviously, not all of this is needed for many Bash scripts, but anything
|
|
|
|
with more than two subcommands will benefit from the builtin tab
|
|
|
|
completion, embedded Markdown help documentation support, and included
|
2021-08-09 18:01:36 -05:00
|
|
|
functions (`usage`, `_filter`, `_buffer`, `_have`, etc.)
|
2021-08-06 12:48:11 -05:00
|
|
|
|
2021-08-08 20:24:27 -05:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
It's usually easiest to install by cloning the repo and adding the full
|
|
|
|
path to this repo to your `PATH`. That way you can keep up with updates.
|
|
|
|
|
|
|
|
## Naming Conventions
|
|
|
|
|
2021-08-09 09:22:17 -05:00
|
|
|
* Name repos containing single bash commands with `cmd-`
|
|
|
|
* Name template repos beginning with `template-`
|
2021-08-10 11:52:00 -05:00
|
|
|
* Start command functions with `command_` to be completed
|
|
|
|
* Start command functions with `command__` to not be completed
|
2021-08-08 20:24:27 -05:00
|
|
|
|
2021-08-06 12:48:11 -05:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```
|
2021-08-10 11:52:00 -05:00
|
|
|
command
|
|
|
|
command usage
|
|
|
|
command help [<cmd>]
|
|
|
|
command foo [<arg>]
|
|
|
|
command bar [<arg>]
|
2021-08-06 12:48:11 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
## Commands
|
|
|
|
|
|
|
|
| Command | Summary |
|
|
|
|
| :-: | - |
|
|
|
|
| [usage] | Display single line summary of all command usage |
|
|
|
|
| [help] | Display help information |
|
|
|
|
| [foo] | Do the foo |
|
|
|
|
| [bar] | Do the bar |
|
|
|
|
|
|
|
|
[usage]: #usage
|
|
|
|
[help]: #help
|
|
|
|
[foo]: #foo
|
|
|
|
[bar]: #bar
|
|
|
|
|
|
|
|
### `usage`
|
|
|
|
|
|
|
|
The `usage` command displays a summary of usage.
|
|
|
|
|
|
|
|
### `help`
|
|
|
|
|
|
|
|
The help command prints help information. If no argument is passed
|
|
|
|
displays general help information (main). Otherwise, the documentation
|
|
|
|
for the specific argument keyword is displayed, which usually
|
|
|
|
corresponds to a command name (but not necessarily). All documentation
|
|
|
|
is written in CommonMark (Markdown) and will displayed as Web page if
|
|
|
|
`pandoc` and `$HELP_BROWSER` are detected, otherwise, just the Markdown is
|
|
|
|
sent to `$PAGER` (default: `more`).
|
|
|
|
|
2021-08-09 09:22:17 -05:00
|
|
|
### `foo`
|
2021-08-06 12:48:11 -05:00
|
|
|
|
|
|
|
The `foo` command foos.
|
|
|
|
|
2021-08-09 09:22:17 -05:00
|
|
|
### `bar`
|
2021-08-06 12:48:11 -05:00
|
|
|
|
|
|
|
The `bar` command bars.
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
Required:
|
|
|
|
|
|
|
|
* Bash 4+
|
|
|
|
|
|
|
|
Optional:
|
|
|
|
|
|
|
|
* `pandoc` - for rich help docs
|
|
|
|
|
|
|
|
## Justification
|
|
|
|
|
|
|
|
Bash is the dominate shell scripting language and the official default
|
|
|
|
Linux interactive shell, which reduces cognitive overhead; every command
|
|
|
|
line *is* a line of code that could be put into script as is. Bash
|
|
|
|
scripts are at the core of cloud, containers, and Kubernetes. Bash 4+
|
|
|
|
with its associative array support, powerful regular expressions, and
|
|
|
|
multiple ways of feeding data to loops easily covers the needs
|
|
|
|
previously requiring Python and Perl scripts. Bash scripts are also much
|
|
|
|
more powerful, safer, flexible, and performant than POSIX shell or Zsh.
|
|
|
|
|
|
|
|
## Caveats
|
|
|
|
|
|
|
|
* Use the official bash path: `#!/usr/bin/bash`
|
|
|
|
* Using `#!/usr/bin/env bash` introduces unnecessary risk
|
|
|
|
* Always set the acceptable `PATH` at beginning of script
|
|
|
|
* Always check script with [`shellcheck`] before releasing
|
|
|
|
* Always use `bc` for *any* floating point math
|
|
|
|
|
|
|
|
[`shellcheck`]: <https://www.shellcheck.net>
|
|
|
|
|
|
|
|
## Legal
|
|
|
|
|
2021-08-06 12:50:56 -05:00
|
|
|
Copyright 2021 Rob Muhlestein <rob@rwx.gg>
|
|
|
|
Released under Apache-2.0 License
|
|
|
|
Please mention <https://youtube.com/rwxrob>
|
2021-08-06 12:48:11 -05:00
|
|
|
|