From da49679bb09e61edf7b5a9ab6612c2640f2f9ec2 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 12 Feb 2026 14:30:34 -0500 Subject: [PATCH] Document the ssh config hooks, by example. --- ssh/sample.config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ssh/sample.config diff --git a/ssh/sample.config b/ssh/sample.config new file mode 100644 index 0000000..f07b7b8 --- /dev/null +++ b/ssh/sample.config @@ -0,0 +1,14 @@ +Match all + include ~/cshenv/ssh/prologue + +# ---- Host specific options go here... + +# Host foo.bar + # User quux + +# ---- End of host specific options... + +Match all + include ~/cshenv/ssh/epilogue + +# vim: ft=sshconfig