Unsorted commands

# method 1
sudo apt-get install glances
glances

# method 2
sudo apt-get install python-pip
pip install glances
python -m glances 
# Get the City-ID for Bucharest (200)
$ curl -s https://worldweather.wmo.int/en/json/full_city_list.txt  | grep 'Bucharest'
"Romania";"Bucharest";"200"

# Use the City-ID to form the URL
$ curl -s https://worldweather.wmo.int/en/json/200_en.json | jq 
{
  "city": {
    "lang": "en",
    "cityName": "Bucharest",
    "cityLatitude": "44.500000000",
    "cityLongitude": "26.130000000",
    "cityId": 200,
    ...
    "forecast": {
      "issueDate": "2022-07-06 14:37:56",
      "timeZone": "Local",
      "forecastDay": [
        {
          "forecastDate": "2022-07-07",
          "wxdesc": "",
          "weather": "Scattered Showers",
          "minTemp": "20",
          "maxTemp": "27",
          ...
        },
        ...