mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
10 lines
149 B
Bash
Executable file
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
|