在Linux中,单引号(')用于定义字符串
例如:
variable='Hello, World!'
echo 'The value of the variable is: $variable'
输出结果将是:
The value of the variable is: $variable
如果你想在单引号内显示变量的值,你需要使用双引号("):
variable='Hello, World!'
echo "The value of the variable is: $variable"
输出结果将是:
The value of the variable is: Hello, World!