A few more doc tweaks.
authorWard Vandewege <ward@curii.com>
Mon, 17 May 2021 21:22:52 +0000 (17:22 -0400)
committerWard Vandewege <ward@curii.com>
Mon, 17 May 2021 21:22:52 +0000 (17:22 -0400)
refs #17668

Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward@curii.com>

doc/user/debugging/container-shell-access.html.textile.liquid

index c17c2a89ade8030ab2a928eb1f23b1db1aacb754..91347e66f2ffb9a4f8f86dba73f98c33128905ac 100644 (file)
@@ -34,14 +34,14 @@ Options:
 </code></pre>
 </notextile>
 
-The @arvados-client shell@ command calls the ssh binary on your system to make the connection. Everything after _[username@]container-uuid_ is passed through to your OpenSSH client. This means many other SSH features can be used, e.g. -g, -f -N, -n, ...
+The @arvados-client shell@ command calls the ssh binary on your system to make the connection. Everything after _[username@]container-uuid_ is passed through to your OpenSSH client.
 
 h2(#Examples). Examples
 
 Connect to a running container, using the container request UUID:
 
 <notextile>
-<pre><code>~$ <span class="userinput">./arvados-client shell ce8i5-xvhdp-e6wnujfslyyqn4b</span>
+<pre><code>~$ <span class="userinput">arvados-client shell ce8i5-xvhdp-e6wnujfslyyqn4b</span>
 root@0f13dcd755fa:~#
 </code></pre>
 </notextile>
@@ -49,7 +49,7 @@ root@0f13dcd755fa:~#
 The container UUID also works:
 
 <notextile>
-<pre><code>~$ <span class="userinput">./arvados-client shell ce8i5-dz642-h1cl0sa62d4i430</span>
+<pre><code>~$ <span class="userinput">arvados-client shell ce8i5-dz642-h1cl0sa62d4i430</span>
 root@0f13dcd755fa:~#
 </code></pre>
 </notextile>
@@ -57,7 +57,7 @@ root@0f13dcd755fa:~#
 SSH port forwarding is supported:
 
 <notextile>
-<pre><code>~$ <span class="userinput">./arvados-client shell ce8i5-dz642-h1cl0sa62d4i430 -L8888:localhost:80</span>
+<pre><code>~$ <span class="userinput">arvados-client shell ce8i5-dz642-h1cl0sa62d4i430 -L8888:localhost:80</span>
 root@0f13dcd755fa:~# nc -l -p 80
 </code></pre>
 </notextile>
@@ -72,7 +72,7 @@ And then, connecting to port 8888 locally:
 Which appears on the other end:
 
 <notextile>
-<pre><code>~$ <span class="userinput">./arvados-client shell ce8i5-dz642-h1cl0sa62d4i430 -L8888:localhost:80</span>
+<pre><code>~$ <span class="userinput">arvados-client shell ce8i5-dz642-h1cl0sa62d4i430 -L8888:localhost:80</span>
 root@0f13dcd755fa:~# nc -l -p 80
 hello
 </code></pre>