view_marker

> inspect_args() { > if ((${#args})); then > readarray -t sorted_keys < <(printf ‘%sn’ “${!args}” | sort) > echo args: > for k in “${sorted_keys}”; do > echo “- ${args} = ${args}” > done > else > echo args: none > fi > > if ((${#other_args})); then > echo > echo other_args: > echo “- ${other_args} = ${other_args}” > for i in “${!other_args}”; do > echo “- ${other_args} = ${other_args}” > done > fi > > if ((${#deps})); then > readarray -t sorted_keys < <(printf ‘%sn’ “${!deps}” | sort) > echo > echo deps: > for k in “${sorted_keys}”; do > echo “- ${deps} = ${deps}” > done > fi > > if ((${#env_var_names})); then > readarray -t sorted_names < <(printf ‘%sn’ “${env_var_names}” | sort) > echo > echo “environment variables:” > for k in “${sorted_names}”; do > echo “- $$k = ${!k:-}” > done > fi > } >