7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z ${TODO_APPEND+x} ]; then
|
|
todo.sh command add "$(date +%Y-%m-%d) ${@:2}"
|
|
else
|
|
todo.sh command add "$(date +%Y-%m-%d) ${@:2} $TODO_APPEND"
|
|
fi
|