mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
10 lines
109 B
Bash
Executable file
10 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "on-add executed"
|
|
|
|
while read TASK; do
|
|
echo "New task $TASK"
|
|
echo $TASK
|
|
done
|
|
|
|
exit 0
|