2024-05-10 14:25:20 +02:00
|
|
|
# since - calcuate time since
|
2024-05-07 07:16:03 +02:00
|
|
|
|
2024-05-10 14:25:20 +02:00
|
|
|
This is a rewrite of the `since` bash script into rust.
|
2024-05-07 07:16:03 +02:00
|
|
|
|
|
|
|
### usage
|
|
|
|
|
2024-05-10 14:25:20 +02:00
|
|
|
Enter a timestamp in `<hh:mm:ss>` and `<yyyy-mm-dd hh:mm:ss>` as well as RFC 3339
|
|
|
|
timestamp.
|
2024-05-07 07:16:03 +02:00
|
|
|
|
|
|
|
```bash
|
2024-05-10 14:25:20 +02:00
|
|
|
since "2014-11-28T12:00:09Z"
|
|
|
|
since "2014-11-28 12:00:09"
|
|
|
|
since "12:00:09"
|
2024-05-07 07:16:03 +02:00
|
|
|
```
|