mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-05 04:57:21 +02:00
11 lines
149 B
Bash
Executable file
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
|