Philipp Grau <[EMAIL PROTECTED]> writes: > Hello, > > sometimes it would be nice to create a task on the commandline e.g.: > > emacs -batch -eval='(my-add-task TaskPool "Do the dishes")' > > Currently I'm to stupid to write my own expression to do this stuff. > Is there anybody out there, who has already done something like this? > > Regards, > > Philipp
Here the little script that work :) ,---- | #!/bin/bash | | echo "Title:\n " | read TITLE | echo "Date:\n " | read DATE | emacsclient -e "(planner-create-task \"$TITLE\" \"$DATE\")" `---- -- A + Thierry Pub key: http://pgp.mit.edu _______________________________________________ Planner-el-discuss mailing list [email protected] https://mail.gna.org/listinfo/planner-el-discuss
