我有以下Shell代码,每当我尝试执行它时,它都无法运行。
user$ ./test.sh hello
user$ hello world
如何摆脱" "你好世界之间的空白'?这是我的代码:
get_input=$1
get_output="world"
echo $get_input$get_output
编辑:上述声明有效,我对我的变量犯了一个愚蠢的错误。
答案 0 :(得分:0)
尝试以下
get_input=$1
get_output="world"
echo "$get_input$get_output"
对我有用..