You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.help("Used to specify that nc should listen for an incoming connection rather than initiate a connection to a remote host. It is an error to use this option in conjunction with the -p, -s, or -z options. Additionally, any timeouts specified with the -w option are ignored."))
903
908
.arg(Arg::with_name("i")
904
909
.short("i")
905
910
.value_name("interval")
911
+
.help("Specifies a delay time interval between lines of text sent and received. Also causes a delay time between connections to multiple ports.")
906
912
.takes_value(true))
907
913
.arg(Arg::with_name("s")
908
914
.short("s")
909
915
.value_name("source_ip_address")
910
-
.takes_value(true))
916
+
.takes_value(true)
917
+
.help("Specifies the IP of the interface which is used to send the packets. It is an error to use this option in conjunction with the -l option."))
911
918
.arg(Arg::with_name("d")
912
-
.short("d"))
919
+
.short("d")
920
+
.help("Do not attempt to read from stdin."))
913
921
.arg(Arg::with_name("U")
914
-
.short("U"))
922
+
.short("U")
923
+
.help("Specifies to use Unix Domain Sockets."))
915
924
.arg(Arg::with_name("u")
916
-
.short("u"))
925
+
.short("u")
926
+
.help("Use UDP instead of the default option of TCP."))
917
927
.arg(Arg::with_name("v")
918
-
.short("v"))
928
+
.short("v")
929
+
.help("Have nc give more verbose output."))
919
930
.arg(Arg::with_name("k")
920
-
.short("k"))
931
+
.short("k")
932
+
.help("Forces nc to stay listening for another connection after its current connection is completed. It is an error to use this option without the -l option."))
921
933
.arg(Arg::with_name("z")
922
-
.short("z"))
934
+
.short("z")
935
+
.help("Specifies that nc should just scan for listening daemons, without sending any data to them. It is an error to use this option in conjunction with the -l option."))
0 commit comments