Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matklad/t-cmd
https://github.com/matklad/t-cmd
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/matklad/t-cmd
- Owner: matklad
- License: apache-2.0
- Created: 2021-11-20T15:00:18.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-21T19:55:15.000Z (almost 3 years ago)
- Last Synced: 2024-09-13T04:57:38.577Z (2 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# t
A Linux CLI utility to measure process time and memory usage.
In a sense, `/usr/bin/time` with better output by default.Example:
```console
$ cd ~/projects/ndarray
$ touch src/lib.rs && t cargo test --no-run -q
real 2.30s
cpu 25.57s (20.17s user + 5.40s sys)
rss 273.46mb
```## Installation
```console
$ cargo install t-cmd
```The binary name is `t`.
## Maintenance
"Works on my machine" and mostly finished for my personal use-case. Would love
to give ownership to somebody who wants to add support for more platforms,
proper docs, CLI options, etc.