pages*: fix various proper names, acronyms and initialisms (#12494)

This commit is contained in:
Vitor Henrique
2024-03-14 02:01:06 -03:00
committed by GitHub
parent 33770df77d
commit 935d605998
243 changed files with 415 additions and 415 deletions

View File

@@ -1,7 +1,7 @@
# autossh
> Run, monitor and restart SSH connections.
> Auto-reconnects to keep port forwarding tunnels up. Accepts all `ssh` flags.
> Auto-reconnects to keep port forwarding tunnels up. Accepts all SSH flags.
> More information: <https://www.harding.motd.ca/autossh>.
- Start an SSH session, restarting when the [M]onitoring port fails to return data:
@@ -12,7 +12,7 @@
`autossh -M {{monitor_port}} -L {{local_port}}:localhost:{{remote_port}} {{user}}@{{host}}`
- Fork `autossh` into the background before executing `ssh` and do [N]ot open a remote shell:
- Fork `autossh` into the background before executing SSH and do [N]ot open a remote shell:
`autossh -f -M {{monitor_port}} -N "{{ssh_command}}"`
@@ -24,6 +24,6 @@
`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L {{local_port}}:localhost:{{remote_port}} {{user}}@{{host}}`
- Run in the background, logging `autossh` debug output and `ssh` verbose output to files:
- Run in the background, logging `autossh` debug output and SSH verbose output to files:
`AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE={{path/to/autossh_log_file.log}} autossh -f -M {{monitor_port}} -v -E {{path/to/ssh_log_file.log}} {{ssh_command}}`