Search for country codes using fuzzy search.
npm i -g iso3166-country-codes-cliFuzzy search using a simple term
cntry <query> # eg: cntry zim
# {
# "name": "Zimbabwe",
# "alpha2": "ZW",
# "alpha3": "ZWE",
# "numeric": "716"
# }Reverse search using an alpha2 or alpha3 code.
Note: The code can be upper/lower/mixed case, but has to be an exact match.
cntry <query> -r # eg: cntry zwe -r
# {
# "name": "Zimbabwe",
# "alpha2": "ZW",
# "alpha3": "ZWE",
# "numeric": "716"
# }