我该如何进行以下工作?:
var="-e" #is entered by a user
echo $var #should produce "-e" but does not, as the string is not escaped
" -e"例如,可以作为输入参数$ 1传递。
非常感谢:)
答案 0 :(得分:1)
您可以尝试printf
。
例如:
var="-e"
printf %s "$var"
应打印出-e。
答案 1 :(得分:0)
echo "${var}"