@@ -49,13 +49,13 @@ To track COVID-19 cases on CLI globally, all you need to do is to use CURL or WG
4949#### CURL
5050
5151``` bash
52- curl https://covid19tracker.xyz
52+ curl https://trackercli.com
5353```
5454
5555#### WGET
5656
5757``` bash
58- wget -i https://covid19tracker.xyz && cat index.html
58+ wget -i https://trackercli.com && cat index.html
5959```
6060
6161#### HTTPie
@@ -73,31 +73,31 @@ To track COVID-19 cases on CLI by country, all you need to do is to append the U
7373
7474``` bash
7575# example usage
76- curl https://covid19tracker.xyz /philippines
76+ curl https://trackercli.com /philippines
7777```
7878
7979#### Country ISO 3166-1 Code
8080
8181``` bash
8282# /ph or /phl is ISO 3166 code of the Philippines
83- curl https://covid19tracker.xyz /ph
83+ curl https://trackercli.com /ph
8484```
8585
8686#### Country with History Chart
8787
8888``` bash
8989# shows result with history chart
90- curl https://covid19tracker.xyz /history/ph
90+ curl https://trackercli.com /history/ph
9191```
9292
9393``` bash
9494# shows by default a history chart
95- curl https://covid19tracker.xyz /history/ph/cases
95+ curl https://trackercli.com /history/ph/cases
9696```
9797
9898``` bash
9999# shows result with history chart
100- curl https://covid19tracker.xyz /history/ph/deaths
100+ curl https://trackercli.com /history/ph/deaths
101101```
102102
103103## Advance Usage
@@ -106,22 +106,22 @@ curl https://covid19tracker.xyz/history/ph/deaths
106106
107107``` bash
108108# check update every 10 seconds (where -n 10 is the interval)
109- watch -n 10 curl https://covid19tracker.xyz
109+ watch -n 10 curl https://trackercli.com
110110```
111111
112112### Create a Shortcut Command
113113
114114``` bash
115115# set a desired alias for the command (replace endcov with your desired alias)
116116# this will give you a global update
117- # alias <your alias>="curl https://covid19tracker.xyz "
117+ # alias <your alias>="curl https://trackercli.com "
118118
119- alias endcov=" curl https://covid19tracker.xyz "
119+ alias endcov=" curl https://trackercli.com "
120120
121121# if you want to track a specific country
122- # alias <your alias>< coutry alias>="curl https://covid19tracker.xyz /<country name, ISO2, ISO3 here>"
122+ # alias <your alias>< coutry alias>="curl https://trackercli.com /<country name, ISO2, ISO3 here>"
123123
124- alias endcovPH=" curl https://covid19tracker.xyz /philippines"
124+ alias endcovPH=" curl https://trackercli.com /philippines"
125125```
126126
127127## Official Blog
0 commit comments