If I create a script called `test.sh`: ``` #!/bin/sh echo "_$BOB" ``` And run `./test.sh && ...
j
If I create a script called `test.sh`:
Copy code
#!/bin/sh
echo "_$BOB"
And run
./test.sh && BOB="a" ./test.sh && ./test.sh
The output is:
Copy code
_
_a
_