taskwarrior/test/test_hooks/on-exit.dummy
2024-12-17 19:08:48 -05:00

9 lines
104 B
Bash
Executable file

#!/bin/sh
echo "on-exit executed"
while read TASK; do
echo "New/modified task $TASK"
done
exit 0