📚Advance Usage

The advance usage of COVID-19 Tracker and CLI. Use our CLI like a pro!

Quiet Mode

This feature will help you to focus on information that matters. We remove extra information such as help guide, docs URL, repo URL, and random health related sayings. We didn't remove the donation URL as it help us to maintain the project. To start using the quiet mode please use the following endpoint.

Basic Usage (Quiet Mode)

Quiet mode is very useful with basic usage and functionality. Just add quietat the beginning of your endpoint query. It will work like a magic!

Global Tracking

curl -L https://covid19-cli.wareneutron.com/quiet

Global Tracking History

curl -L https://covid19-cli.wareneutron.com/quiet/history

Country Tracking

curl -L https://covid19-cli.wareneutron.com/quiet/ph

Country Tracking History (Charts)

curl -L https://covid19-cli.wareneutron.com/quiet/history/ph

Country Tracking History (Dashboard)

curl -L https://covid19-cli.wareneutron.com/quiet/history/charts/ph

Replace the ph country code with your country code. See ISO 3166-1 for more details.

Advance Usage (Quiet Mode)

We make the quiet mode even useful when you use it with advance functionality such as Windows CMD, Plain, and Basic versions. Try it out!

Windows CMD Version

curl -L https://covid19-cli.wareneutron.com/quiet/cmd

Plain Version

curl -L https://covid19-cli.wareneutron.com/quiet/plain

Basic Version

curl -L https://covid19-cli.wareneutron.com/quiet/basic

Windows CMD Version

We develop the CLI application to support Windows CMD since the author started the project on Windows machine. This is the reason why our CLI project is different from others.

Global Tracking

curl -L https://covid19-cli.wareneutron.com/cmd

Country Tracking

curl -L https://covid19-cli.wareneutron.com/cmd/ph

Replace the ph country code with your country code. See ISO 3166-1 for more details.

Plain & Basic Version

The CLI project works great with ANSI supported command line interface. How about command line interfaces that doesn't support ANSI? Well, we created a version for that. This is the plain and basic version, which still works if the result throws gibberish characters on your command line!

Global Tracking

Plain Version

curl -L https://covid19-cli.wareneutron.com/plain

Basic Version

curl -L https://covid19-cli.wareneutron.com/basic

Country Tracking

Plain Version

curl -L https://covid19-cli.wareneutron.com/plain/ph

Basic Version

curl -L https://covid19-cli.wareneutron.com/basic/ph

Replace the ph country code with your country code. See ISO 3166-1 for more details.

Local Command Line Version

Currently, under testing... we'll update this section once ready.

Check Update Automagically

Check update every 10 seconds (where -n 10 is the interval).

watch -n 10 "curl -L covid19-cli.wareneutron.com"

For more advance setup (where -s is to suppress curl's progress bar).

watch -c -n 600 "curl -s -L covid19-cli.wareneutron.com/ph"

Create a Shortcut Command

Let's set a desired alias for the command which will give you a global update.

alias cov="curl -L https://covid19-cli.wareneutron.com"

If you want to track specific country you can follow this format.

alias covPH="curl -L https://covid19-cli.wareneutron.com/ph"

Replace the ph country code with your country code. See ISO 3166-1 for more details.

Last updated