Anyone else also use a simple shell command to effortlessly add to-dos to a todo.txt file in their home folder? I love how this works from any open terminal window. Doing the same for quick notes as well.
@reiver Essentially yes;
```bash
todo ()
{
TS=$(date +%Y-%m-%d);
if [ -z "$1" ]; then
echo "Please provide something to do...";
else
echo -e "$TS $1" >> $todotxt;
fi
}
```
@reiver I was also referring to http://todotxt.org/
@johanbove
echo 'buy milk' >> ~/TODO.txt
?