File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -54,21 +54,19 @@ public class SftpStreamProxy implements Proxy {
5454 /**
5555 * Command pattern to execute on the proxy host.
5656 * <p>
57- * When run, the command output should be forwarded to the target host and port, and its input should be forwarded
58- * from the target host and port.
57+ * When run, the command output should be forwarded to the target host and port, and its input should be forwarded from the target host and port.
5958 * </p>
6059 * <p>
61- * The command will be created for each host/port pair by using {@linkplain String#format(String, Object...)} with
62- * two objects: the target host name ({@linkplain String}) and the target port ({@linkplain Integer}).
60+ * The command will be created for each host/port pair by using {@linkplain String#format(String, Object...)} with two objects: the target host name
61+ * ({@linkplain String}) and the target port ({@linkplain Integer}).
6362 * </p>
6463 * <p>
65- * <p>
6664 * Here are two examples (that can be easily used by using the static members of this class):
6765 * </p>
6866 * <ul>
6967 * <li>{@code nc -q 0 %s %d} to use the netcat command ({@linkplain #NETCAT_COMMAND})</li>
70- * <li>{@code /bin/bash -c 'exec 3<>/dev/tcp/%s/%d; cat <&3 & cat >&3; kill $!} will use bash built-in TCP
71- * stream, which can be useful when there is no netcat available. ({@linkplain #BASH_TCP_COMMAND})</li>
68+ * <li>{@code /bin/bash -c 'exec 3<>/dev/tcp/%s/%d; cat <&3 & cat >&3; kill $!} will use bash built-in TCP stream, which can be useful when there is no
69+ * netcat available. ({@linkplain #BASH_TCP_COMMAND})</li>
7270 * </ul>
7371 */
7472 private final String commandFormat ;
You can’t perform that action at this time.
0 commit comments