Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jml/hodor

Command-line todo list program, compatible with todo.txt
https://github.com/jml/hodor

Last synced: about 2 months ago
JSON representation

Command-line todo list program, compatible with todo.txt

Awesome Lists containing this project

README

        

# hodor

*A simple todo list system*

## What does it do?

It's a todo list.

You can *add items*:

```
$ hodor add Buy cereal
01 2014-09-01 Buy cereal
HODOR: 1 added.
```

View them:

```
$ hodor ls
01 2014-09-01 Buy cereal
--
HODOR: 1 of 1 items shown
```

Mark them as *done*:

```
$ hodor do 1
01 x 2014-09-01 2014-09-01 Buy cereal
HODOR: 1 marked as done.
```

Run `hodor --help` to get the full range of commands.

## Why use this?

Probably you don't want to. Hodor was written as a clone of
[todotxt](http://todotxt.com/), which is used much more widely and is much
better maintained.

## Why does this exist?

So I could try to write a command-line utility in Haskell. It's been fun.

Released under the Apache 2.0 license, copyright Jonathan M. Lange.