https://github.com/dusktreader/gowatch
A command-line stopwatch written in Go
https://github.com/dusktreader/gowatch
Last synced: 11 months ago
JSON representation
A command-line stopwatch written in Go
- Host: GitHub
- URL: https://github.com/dusktreader/gowatch
- Owner: dusktreader
- License: mit
- Created: 2025-03-11T23:29:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-12T03:44:56.000Z (about 1 year ago)
- Last Synced: 2025-07-14T06:35:32.709Z (11 months ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# gowatch
The `gowatch` tool is a simple command-line stopwatch. It supports multiple stopwatches
separated by name.
## Quickstart
1. Install from the github repository:
```bash
go get -u github.com/dusktreader/gowatch
```
## Example usage
```bash
$ gowatch start
```
Some time later...
```bash
$ gowatch stop
1m59.74s
```
## Getting help
Simply run `gowatch --help`:
```
$ gowatch --help
A command line stopwatch written in Go
Usage:
gowatch [flags]
gowatch [command]
Available Commands:
clear Clear timers
completion Generate the autocompletion script for the specified shell
help Help about any command
list List all timers
reset Reset a timer
show Show a timer
start Start a timer
stop Stop a timer
toggle Toggle a timer
Flags:
-h, --help help for gowatch
-v, --verbose Show verbose logging output
Use "gowatch [command] --help" for more information about a command.
```
## License
Distributed under the MIT License. See `LICENSE` for more information.