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

10 lines
149 B
Bash
Executable file

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