www.nico.schottelius.org/software/ctt.mdwn

61 lines
1.5 KiB
Plaintext
Raw Normal View History

[[!meta title="ctt - time tracking for geeks"]]
[[!toc levels=3]]
## Introduction
Ever wondered how much you work compared to what you should?
Are you in the need to record working time for a customer?
Do you want something that is very simple, geek compatible
and runs on the command line? Then you may have found the right
software.
## Installation
2018-10-18 09:47:26 +00:00
Get ctt via git:
2018-10-18 09:47:26 +00:00
git clone https://code.ungleich.ch/ungleich-public/ctt.git
2013-08-30 09:14:51 +00:00
## Examples
2013-04-29 15:06:34 +00:00
# Track some time
% ctt track test
Comment: Did some cool work
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# Track for a given time range
% ctt track --sd 2013-04-29-1000 --ed 2013-05-29-1200 test
Comment: Long working period
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# Track (keep running), but specify different start date
% ctt track --sd 2013-04-29-0800 test
Comment: Started early today
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# Track without prompting for a comment
2018-10-18 09:47:26 +00:00
% ctt track -n test
2013-04-29 15:06:34 +00:00
# List available projects
% ctt listprojects
[...]
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# List all entries of this month for project test
% ctt report test
[...]
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# List all entries from January
2018-10-18 09:47:26 +00:00
% ctt report --sd 2013-01-01 --ed 2013-01-31 test
2013-04-29 15:06:34 +00:00
# List all entries from January matching either rails ruby or cdist
% ctt report --sd 2013-01-29 --ed 2013-04-29 -e "(rails|ruby|cdist)" test
2018-10-18 09:47:26 +00:00
2013-04-29 15:06:34 +00:00
# The same, but case insensitive
% ctt report --sd 2013-01-29 --ed 2013-04-29 -e "(rails|ruby|cdist)" -i test
## Support
2020-05-14 12:52:44 +00:00
You can find us on matrix, we
[chat.with.ungleich.ch](https://chat.with.ungleich.ch).
2018-10-18 09:47:26 +00:00
Issues can be opened on https://code.ungleich.ch/ungleich-public/ctt.
[[!tag ctt unix]]