Updated SC2006 (markdown)

Vidar Holen
2019-04-27 14:44:46 -07:00
parent 46673d33f9
commit 48ed454ded

@@ -3,13 +3,13 @@
### Problematic code
```sh
echo "Current time: `date`"
echo "You are running on `uname`"
```
### Correct code
```sh
echo "Current time: $(date)"
echo "You are running on $(uname)"
```
### Rationale