可以,脚本中的参数使用双引号,就是一个整体
tesh.sh中
#!/bin/bash
if [ "$1" = "hello hello" ];then
echo "hello"
fi
调用:sh test.sh “hello hello”
在脚本以及命令行中都需要使用“ ”,所以在脚本编写的过程中,变量最好都加上“”
可以,脚本中的参数使用双引号,就是一个整体
tesh.sh中
#!/bin/bash
if [ "$1" = "hello hello" ];then
echo "hello"
fi
调用:sh test.sh “hello hello”
在脚本以及命令行中都需要使用“ ”,所以在脚本编写的过程中,变量最好都加上“”