#!/bin/bash # Es geht auch ohne Variable a t=$(curl -s https://wetter.hs-worms.de/api/v3/data | jq '.temperature.out') t1=15 if [[ $t < $t1 ]]; then echo "Uh, this is cold !"; else echo "Uff,rather warm !"; fi