In /usr/bin/tpm-nvsize line 18:
  if /usr/bin/tpmc definespace 0xf004 $(printf "%#x" $try) 0x1 \
                                      ^------------------^ SC2046: Quote this to prevent word splitting.


In /usr/bin/tpm-nvsize line 26:
      try=$(( ( $high + $low ) / 2 ))
                ^---^ SC2004: $/${} is unnecessary on arithmetic variables.
                        ^--^ SC2004: $/${} is unnecessary on arithmetic variables.


In /usr/bin/tpm-nvsize line 30:
      try=$(( $try * 2 ))
              ^--^ SC2004: $/${} is unnecessary on arithmetic variables.


In /usr/bin/tpm-nvsize line 48:
    try=$(( ( $high + $low ) / 2 ))
              ^---^ SC2004: $/${} is unnecessary on arithmetic variables.
                      ^--^ SC2004: $/${} is unnecessary on arithmetic variables.

For more information:
  https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
  https://www.shellcheck.net/wiki/SC2004 -- $/${} is unnecessary on arithmeti...