Skip to content

Commit

Permalink
remove guide ssh backslashes (not required anymore)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschubert committed Jan 2, 2024
1 parent 8cd5fff commit 0e861f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vignettes/userguide.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -638,11 +638,11 @@ To supply your own template, save its contents with any desired changes to a
file _on your local machine_ and have `clustermq.template` point to it.

```{sh eval=FALSE}
ssh -o "ExitOnForwardFailure yes" -f \
-R {{ ctl_port }}:localhost:{{ local_port }} \
-R {{ job_port }}:localhost:{{ fwd_port }} \
{{ ssh_host }} \
"R --no-save --no-restore -e \
'clustermq:::ssh_proxy(ctl={{ ctl_port }}, job={{ job_port }})' \
ssh -o "ExitOnForwardFailure yes" -f
-R {{ ctl_port }}:localhost:{{ local_port }}
-R {{ job_port }}:localhost:{{ fwd_port }}
{{ ssh_host }}
"R --no-save --no-restore -e
'clustermq:::ssh_proxy(ctl={{ ctl_port }}, job={{ job_port }})'
> {{ ssh_log | /dev/null }} 2>&1"
```

0 comments on commit 0e861f2

Please sign in to comment.