In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-50593792.squashfs_v4_le_extract/usr/bin/opkg-check-config line 27:
file_out=`mktemp`
^------^ SC2006 (style): Use $(...) notation instead of legacy backticks `...`.
Did you mean:
file_out=$(mktemp)
In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-50593792.squashfs_v4_le_extract/usr/bin/opkg-check-config line 47:
awk_lists_dir='$1 == "lists_dir" { print "option lists_dir " $3 ; \
^-- SC2016 (info): Expressions don't expand in single quotes, use double quotes for that.
In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-50593792.squashfs_v4_le_extract/usr/bin/opkg-check-config line 56:
awk "$awk_script" < $file_in > $file_out
^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
awk "$awk_script" < "$file_in" > "$file_out"
In /logs/firmware/patool_extraction/rootfs.img_unblob_extracted/rootfs.img_extract/0-50593792.squashfs_v4_le_extract/usr/bin/opkg-check-config line 59:
mv $file_out $file_in
^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
Did you mean:
mv "$file_out" "$file_in"
For more information:
https://www.shellcheck.net/wiki/SC2016 -- Expressions don't expand in singl...
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of le...