Re-add some lost slashes

This commit is contained in:
David Eisinger
2023-11-01 16:13:04 -04:00
parent d70ca94988
commit eba2b1db06

View File

@@ -54,11 +54,11 @@ results. Leveraging MacOS' `open` command, this one-liner does the
trick[^2]:
```sh
cat [filename.md]
| pandoc -t html
> /tmp/output.html
&& open /tmp/output.html
&& read -n 1
cat [filename.md] \
| pandoc -t html \
> /tmp/output.html \
&& open /tmp/output.html \
&& read -n 1 \
&& rm /tmp/output.html
```