vote up 1 vote down star

Are the any task tracking systems with command-line interface?

Here is a list of features I'm interested in:

  • Simple task template
    Something like plain-text file with property:type pairs, for example:
description:string  
some-property:integer required
  • command line interface
    for example:
// Creates task
<task tracker>.exe -create {description: "Foo", some-property: 1}   
// Search for tasks with description field starting from F
<task tracker>.exe -find { description: "F*" }
  • XCopy deployment
    It should not require to install heavy DBMS

  • Multiple users support
    So it's not just a to-do list for a single person

flag

33% accept rate

7 Answers

vote up 2 vote down check

http://ditz.rubyforge.org/

link|flag
almost what I want. but datamodel is not extensible – aku Oct 23 '08 at 2:42
vote up 2 vote down

Interesting idea; the closest thing I have heard of is todo.txt.

Alternatively, you could roll your own by just using a database (e.g. sqllite) and SQL. Optionally, write a wrapper script that parses your plain-text file and command-line options, and generates the corresponding SQL.

link|flag
Looks interesting, thanks! – aku Sep 17 '08 at 10:29
vote up 1 vote down

http://roundup.sourceforge.net/

link|flag
Thanks, I'll take a look at it – aku Sep 17 '08 at 10:32
vote up 1 vote down

Have you seen ticgit. It sounds like it might do just what you guys are after.

link|flag
Interesting thing, I'll take a closer look – aku Sep 17 '08 at 23:35
vote up 0 vote down

Fogbugz has a Command Line Client.

link|flag
Nope, fogbugz is to heavy, I'm looking for something like svn – aku Sep 17 '08 at 10:31
vote up 0 vote down

@Peter Hilton,

I'm going to create such system. So I'm wondering whether such system exists. General idea is to keep it as simple as possible: command line utility to manage tasks & simple server wit REST interface. I used dozen different task tracking system and come to conclusion that I don't need fancy UI. It should be like Subversion - you can happily work with command-line based svn.exe

link|flag
vote up 0 vote down

I've abused the cal and calendar commandline tools regularly for this type of task.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.