We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68ab30 commit 2f46820Copy full SHA for 2f46820
README.md
@@ -75,6 +75,14 @@ Bash server:
75
this is a bash instance running on the server
76
77
78
+SSH forwarding:
79
+
80
+ server$ sshfront example/sshforward
81
+ client$ ssh alice@$SERVER
82
+ Forward ssh [email protected]...
83
+ Welcome to another.server
84
85
86
## Sponsors
87
88
This project was made possible thanks to [Deis](http://deis.io) and [DigitalOcean](http://digitalocean.com).
example/sshforward
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+echo "Forward ssh ${USER}@localhost..."
3
+ssh "${USER}@localhost"
0 commit comments