taskwarrior/test/test_hooks/wrapper.sh
2024-12-17 19:08:48 -05:00

18 lines
548 B
Bash
Executable file

#!/usr/bin/env bash
SELF=$(basename $0)
ORIGINALHOOK="$(dirname $0)/original_${SELF}"
IN="${ORIGINALHOOK}.log.in"
OUT="${ORIGINALHOOK}.log.out"
# Let it know that we were executed
echo "% Called at $(python3 -c 'import time; print(time.time())') with '$@'" >> ${IN}
# Log what arrives via stdin to ${IN} and what comes via stdout to ${OUT}
$ORIGINALHOOK "$@" < <(tee -a ${IN}) > >(tee -a ${OUT})
# More on the < <() syntax at: https://tldp.org/LDP/abs/html/process-sub.html
EXITCODE=$?
echo "! Exit code: ${EXITCODE}" >> ${OUT}
exit $EXITCODE