This software enables to create, delete and list your gists using command line.
You will need http-conduit
and aeson
to build this program :
cabal install http-conduit
cabal install aeson
Then you can compile using :
ghc -o hgist Main.hs
hgist ls <user>
: list gists for useruser
.hgist rm <user> <gistId>
: delete gist havinggistId
as id.hgist create <user> <description> <file>...
: create a gist containing the files listed and havingdescription
as description.