An open API service indexing awesome lists of open source software.

https://github.com/localghost/dtc

Datetime CLI converter.
https://github.com/localghost/dtc

converter datetime datetime-conversion datetime-converter

Last synced: about 2 months ago
JSON representation

Datetime CLI converter.

Awesome Lists containing this project

README

        

# dtc
Datetime converter.

## Examples

```
dtc "2023-10-01 11:20:00 cest" utc
2023-10-01 09:20:00 UTC
```

When no date is provided, now is assumed:
```
dtc "15:27:32 jst" cest
2023-10-22 08:27:32 CEST
```

When no timezone is provided UTC is assumed:
```
dtc "2023-05-07 09:13:03" utc
2023-05-07 09:13:03 UTC
```

From UNIX timestamp:
```
dtc 1698012234 edt
2023-10-22 18:03:54 EDT
```