cd $Script_Dir
clear
read -p "Enter name of script to run shellcheck on. -> " n1
shellcheck "$n1"
In shellchk.sh line 10:
read -p "Enter name of script to run shellcheck on. -> " n1
^-- SC2162: read without -r will mangle backslashes.
为什么这么说?我永远不会在文件名中使用反斜杠。
如果我使用
read -r "Enter name of script to run shellcheck on. -> " n1
/home/andy/bin/nshellchk.sh: line 11: read: `Enter name of script to run shellcheck on. -> ': not a valid identifier
: : openBinaryFile: does not exist (No such file or directory)
read
是 bash 内置的。help read
告诉shellcheck
警告不要使用read
without-r
因为read
不会像当时那样读取反斜杠。如果您不需要启用反斜杠功能,请使用-r
.shellcheck
不知道您是否要在文件名中使用反斜杠。-p
如果要read
显示提示文本,则必须使用。所以你可能想使用