Adjusted docs and small tweaks

This commit is contained in:
kexkey
2018-10-12 13:21:25 -04:00
parent e1ee367430
commit 9babb26d5f
6 changed files with 13 additions and 35 deletions

View File

@@ -3,13 +3,13 @@
trace()
{
if [ -n "${TRACING}" ]; then
echo "$(date -Is) ${1}" > /dev/stderr
echo "$(date -Is) ${1}" 1>&2
fi
}
trace_rc()
{
if [ -n "${TRACING}" ]; then
echo "$(date -Is) Last return code: ${1}" > /dev/stderr
echo "$(date -Is) Last return code: ${1}" 1>&2
fi
}