seems like you want to keep the double quotes though, not omit them

Operations Research Engineering Software+
2019-08-26 12:08:50 -07:00
parent 4bdb1bc40c
commit 47a7f1a11d

@@ -9,7 +9,7 @@ export foo="$(mycmd)"
### Correct code: ### Correct code:
```sh ```sh
foo=$(mycmd) foo="$(mycmd)"
export foo export foo
``` ```