In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 13:
. /usr/html/axis-cgi/lib/functions.sh
  ^-- SC1091 (info): Not following: /usr/html/axis-cgi/lib/functions.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 14:
. /usr/html/axis-cgi/admin/lib/systemlog.sh
  ^-- SC1091 (info): Not following: /usr/html/axis-cgi/admin/lib/systemlog.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 15:
[ ! -f /usr/html/axis-cgi/admin/lib/adp.sh ] || . /usr/html/axis-cgi/admin/lib/adp.sh
                                                  ^-- SC1091 (info): Not following: /usr/html/axis-cgi/admin/lib/adp.sh was not specified as input (see shellcheck -x).


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 21:
	local qs__ IFS='&' param__ decoded_param__
        ^-- SC3043 (warning): In POSIX sh, 'local' is undefined.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 111:
if [ $(__whoami) = accesslog.cgi ]; then
     ^---------^ SC2046 (warning): Quote this to prevent word splitting.


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 116:
	cat /var/log/auth.log* 2>/dev/null | sort >$tmpfile__
                                                   ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
	cat /var/log/auth.log* 2>/dev/null | sort >"$tmpfile__"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 120:
__cgi_hdgen $cgi_hdgen__
            ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
__cgi_hdgen "$cgi_hdgen__"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 125:
		__do_show_logfile_for_appname $appname__ $format__ $title__ 			$file__ | $tail_cmd
                                              ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                         ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                                   ^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                                                                ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__do_show_logfile_for_appname "$appname__" "$format__" "$title__" 			"$file__" | $tail_cmd


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 127:
		__do_show_logfile $format__ $title__ $file__ | $tail_cmd
                                  ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                            ^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                     ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__do_show_logfile "$format__" "$title__" "$file__" | $tail_cmd


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 131:
		__do_show_logfile_for_appname $appname__ $format__ $title__ 			$file__
                                              ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                         ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                                   ^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                                                                ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__do_show_logfile_for_appname "$appname__" "$format__" "$title__" 			"$file__"


In /logs/firmware/unblob_extracted/firmware_extract/4325012-58052244.squashfs_v4_le_extract/usr/html/axis-cgi/systemlog.cgi line 133:
		__do_show_logfile $format__ $title__ $file__
                                  ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                            ^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
                                                     ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean: 
		__do_show_logfile "$format__" "$title__" "$file__"

For more information:
  https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
  https://www.shellcheck.net/wiki/SC3043 -- In POSIX sh, 'local' is undefined.
  https://www.shellcheck.net/wiki/SC1091 -- Not following: /usr/html/axis-cgi...