Use bash strict mode in most shell scripts

This commit is contained in:
Ohad Livne 2025-07-12 23:32:33 +03:00
parent 8ca04dec25
commit e0c33b01b7
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
28 changed files with 112 additions and 28 deletions

View file

@ -1,4 +1,7 @@
#! /usr/bin/sh
#! /usr/bin/bash
set -euo pipefail
IFS=$'\n\t'
# Documentation available in https://github.com/chubin/wttr.in
curl --http1.1 --show-error --silent 'https://wttr.in/?0&m&q&T&format=3' > /tmp/weather-report.txt