fix: Make the shellcheck show most warnings more clearly

This commit is contained in:
Carlos Solís 2025-02-07 16:20:39 +00:00
parent 98c48e0440
commit e3962133f0

View file

@ -1,7 +1,8 @@
#!/bin/bash
for i in ./*.sh; do
shfmt -w "${i}"
shellcheck -o all -f diff "${i}" | patch -p1
shellcheck -o all -e SC2312 -f diff "${i}" | patch -p1
shellcheck -o all -e SC2312 "${i}"
i_tmp="${i##./}"
find /etc/cron.* -iname "${i_tmp%.sh}" | while read -r j; do
echo "${j}"