
[](https://github.com/xavetar/PHASEXave/actions/workflows/on_tag.yaml)

[](https://opensource.org/licenses/Apache-2.0)
[](https://opensource.org/licenses/MIT)
# Date-CLI

<div style="display: flex; justify-content: center; gap: 20px;">
<a href="https://nowpayments.io/donation?api_key=NRH28QG-ABRM7CC-J7NVGXN-F8FTRS1&source=lk_donation&medium=referral" target="_blank">
<img src="https://nowpayments.io/images/embeds/donation-button-black.svg" alt="Crypto donation button by NOWPayments" style="height: 60px !important; width: 217px !important;">
</a>
</div>
## Command-Line Options
The program accepts the following command-line options:
```
-z, --zone [ZONE]: Set the time zone. The default value is local system time zone.
-m, --method [METHOD]: Set the method for determining the day of the week. There are three options available:
1: Xavetar - High Precision - Fast
2: Rata Die - High Precision - Fast (default)
3: Sakamoto - High Precision - Fast
-v, --view [VIEW]: Set the calendar view. There are two options available:
1: Julian
2: Gregorian (default)
3: Solar
```
## Usage
Get current date and time with local time zone for Gregorian calendar:
```shell
date-cli
```
Get current date and time with local time zone for Julian calendar:
```shell
date-cli -v 1
```
Get current date and time with local time zone for Solar calendar:
```shell
date-cli -v 3
```
Get current date with your time zone for Gregorian calendar with Sakamoto method to determining the day of the week:
```shell
date-cli -z -06:00:00 -m 3 -v 2
```
Get current date with your time zone for Julian calendar with Xavetar method to determining the day of the week:
```shell
date-cli -z +12:00:00 -m 1 -v 1
```
Get current date with your time zone for Solar calendar with Rata Die method to determining the day of the week:
```shell
date-cli -z +03:00:00 -m 2 -v 3
```
## License
Date-CLI is primarily distributed under the terms of three the Anti-Virus license and MIT license and the Apache License (Version 2.0)
See [LICENSE-ANTI-VIRUS](LICENSE) and [LICENSE-APACHE](LICENSE) and [LICENSE-MIT](LICENSE) for details.