DaveC426913
Programmer
Clearly I don't know how to concatenate in shell script.
#!/usr/local/bin/bash
FOO1="foobie"
BAR1="bar"
echo "$FOO1/$BAR1"
#exit 0
I want it to output foobie/bar
What I'm getting is /barie
#!/usr/local/bin/bash
FOO1="foobie"
BAR1="bar"
echo "$FOO1/$BAR1"
#exit 0
I want it to output foobie/bar
What I'm getting is /barie