是否可以在特殊参数中添加字符串?

时间:2016-01-26 19:53:45

标签: bash shell

我有以下Shell代码,每当我尝试执行它时,它都无法运行。

user$ ./test.sh hello
user$ hello world

如何摆脱" "你好世界之间的空白'?这是我的代码:

get_input=$1
get_output="world"
echo $get_input$get_output

编辑:上述声明有效,我对我的变量犯了一个愚蠢的错误。

1 个答案:

答案 0 :(得分:0)

尝试以下

get_input=$1
get_output="world"
echo "$get_input$get_output"

对我有用..