taskwarrior/test/test_hooks/on-launch-good-env
2024-12-17 19:08:48 -05:00

25 lines
407 B
Bash
Executable file

#!/bin/sh
# The on-launch event is triggered once, after initialization, before any
# processing occurs. This hooks script has no effect on processing.
# Input:
# - None
# Output:
# - Optional feedback/error.
echo $1
echo $2
echo $3
echo $4
echo $5
echo $6
#for arg in $*
#do
# echo $arg
#done
# Status:
# - 0: JSON ignored, non-JSON is feedback.
# - non-0: JSON ignored, non-JSON is error.
exit 0