From ea42006cbe82e8c17a647db488520b7c7a54ea2a Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 21 Apr 2026 23:56:34 -0600 Subject: [PATCH] docs: add ssh_config ProxyCommand example to help text --- cmd/sclient/main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmd/sclient/main.go b/cmd/sclient/main.go index 3eb8a14..5a7f9d8 100644 --- a/cmd/sclient/main.go +++ b/cmd/sclient/main.go @@ -36,6 +36,10 @@ func usage() { "\n"+ " ex: sclient --ssh 22 example.com 3000\n"+ " (try TLS+ssh ALPN on 443, fall back to SSH on port 22)\n"+ + "\n"+ + " ~/.ssh/config:\n"+ + " Host *\n"+ + " ProxyCommand sclient --ssh %%p %%h\n"+ "\n", ver()) flag.PrintDefaults() fmt.Println()