diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2021-09-10 13:38:38 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-09-10 14:05:35 +0200 |
commit | b0ec59a708b493c6f3940336b1a537bcb64dd2a7 (patch) | |
tree | 2da4aa0e22a1ce9c5d3b535bd491c5667479eea2 /sshd.8 | |
parent | upstream: Document behaviour of arguments following non-interactive (diff) | |
download | openssh-b0ec59a708b493c6f3940336b1a537bcb64dd2a7.tar.xz openssh-b0ec59a708b493c6f3940336b1a537bcb64dd2a7.zip |
upstream: Document that non-interactive commands are run via the user's
shell using the -c flag. ok jmc@
OpenBSD-Commit-ID: 4f0d912077732eead10423afd1acf4fc0ceec477
Diffstat (limited to 'sshd.8')
-rw-r--r-- | sshd.8 | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -33,8 +33,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: sshd.8,v 1.316 2021/07/30 14:28:13 jmc Exp $ -.Dd $Mdocdate: July 30 2021 $ +.\" $OpenBSD: sshd.8,v 1.317 2021/09/10 11:38:38 dtucker Exp $ +.Dd $Mdocdate: September 10 2021 $ .Dt SSHD 8 .Os .Sh NAME @@ -303,7 +303,12 @@ things like allocating a pseudo-tty, forwarding X11 connections, forwarding TCP connections, or forwarding the authentication agent connection over the secure channel. .Pp -After this, the client either requests a shell or execution of a command. +After this, the client either requests an interactive shell or execution +or a non-interactive command, which +.Nm +will execute via the user's shell using its +.Fl c +option. The sides then enter session mode. In this mode, either side may send data at any time, and such data is forwarded to/from the shell or |