#!/bin/bash
# d14 - Script Documentation Helper

set -e

source '/home/zwelch/src/mcf/mcsh-release/install/share/mcsh/mcsh.sh'

lib_load 'dev/docs/cli'


######
# Documentation (d14) Commands

# d14_dispatch() - Dispatches commands via ``package_docs_dispatch()``.
d14_dispatch() { package_docs_dispatch "$@"; }


######
# Main

# d14_desc() - Prints a short description of the d14 script
d14_desc() { echo "Script Documentation Helper"; }

# d14_usage() - Prints the top-level command usage for this script
d14_usage() { package_docs_usage "$@"; }

# d14_help() - Prints the top-level command help for this script
d14_help() {
	cat <<HELP
d14 is a Script Documentation Helper tool.  It is part of the mcsh package.
HELP
}

app_run "$@"

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:34:23 PDT 2017 by mcsh d14 v0.23.0.