In /usr/bin/nss-config line 27:
	exit $1
             ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
	exit "$1"


In /usr/bin/nss-config line 41:
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
               ^-- SC2006: Use $(...) notation instead of legacy backticked `...`.

Did you mean: 
  -*=*) optarg=$(echo "$1" | sed 's/[-_a-zA-Z0-9]*=//') ;;


In /usr/bin/nss-config line 110:
    echo $prefix
         ^-----^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
    echo "$prefix"


In /usr/bin/nss-config line 114:
    echo $exec_prefix
         ^----------^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
    echo "$exec_prefix"


In /usr/bin/nss-config line 143:
      echo $libdirs
           ^------^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
      echo "$libdirs"

For more information:
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
  https://www.shellcheck.net/wiki/SC2006 -- Use $(...) notation instead of le...