Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Task/issue tracking system with command-line interface [closed]

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

like image 709
aku Avatar asked Sep 17 '08 10:09

aku


1 Answers

Erlangs Ticket System

Created by Peter Högfeldt in 1986. This is the ticket system that was used in the Erlang distribution.

Source: Joe Armstrong's blog

like image 99
neoneye Avatar answered Oct 13 '22 11:10

neoneye