taskwarrior/test/test_hooks/on-modify.dummy
Dustin J. Mitchell 68cf122cea
Update hooks to use read -r and printf
This portably avoids any interpretation of backslash escapes by the
shell.
2025-07-02 15:36:43 -04:00

11 lines
149 B
Bash
Executable file

#!/bin/sh
echo "on-modify executed"
read -r TASK
read -r MODTASK
echo "Existing task $TASK modified to $MODTASK"
printf "%s\n" "$MODTASK"
exit 0