Bash_Scripts/Templates/Functions/Function-Docstring.example
2021-08-03 18:24:40 -05:00

13 lines
225 B
Plaintext

# What the function does
#
# Arguments:
# arg1 <type: string> <position: 1> <required: true>
# - An example argument
#
# Usage:
# functionName "hello"
# - Makes arg1 equal to "hello"
#
# POSIX Compliant:
# Yes
#