Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timdeschryver/tracker
Time tracker
https://github.com/timdeschryver/tracker
Last synced: 8 days ago
JSON representation
Time tracker
- Host: GitHub
- URL: https://github.com/timdeschryver/tracker
- Owner: timdeschryver
- Created: 2017-08-14T21:00:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-10T16:39:24.000Z (over 7 years ago)
- Last Synced: 2024-10-28T04:30:07.995Z (about 2 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tracker
Small command line utility for task tracking.## Usage:
```bash
> track [command]
> track [report]
> trackl
```## Commands:
### start [taskname]
This will also stop the currently running task.
```bash
> track start foo
```### stop
```bash
> track stop
```## Reports:
### Check which task is currently running with **status**
```bash
> track status
# foo been running for 11m36s
```### Get a list of all tasks and their corresponding durations with **summary** or **summary_today**
```bash
> track summary
# foo: 11m36s
# bar: 08m05s
```### Get a list of all tasks and their start and stop times with **timesheet** or **timesheet_today**
```bash
> track summary
# [2017-08-23 10:43:17 - 2017-08-23 10:47:51]: foo
# [2017-08-23 10:47:51 - 2017-08-23 10:55:56]: bar
# [2017-08-23 11:21:07 - 2017-08-23 11:28:09]: foo
```## Interactive wizard
```bash
> trackl
```