Updated SC2091 (markdown)

philippgl
2017-08-22 10:57:56 +02:00
parent da87040b8a
commit 9bc5a5bde4

@@ -34,4 +34,8 @@ The solution is simply to remove the surrounding `$()`. This will execute the co
### Exceptions:
If you really want to execute the output of a command rather than the command itself, you can ignore this message.
If you really want to execute the output of a command rather than the command itself, you can ignore this message or assign the output to a new variable first:
```sh
readonly command_to_execute="$(print_the_command)"
"$command_to_execute"
```