
ncat
List of commands for ncat:
-
ncat:tldr:05c5a ncat: Accept multiple connections and keep ncat open after they have been closed.$ ncat -lk ${port}try on your machineexplain this command
-
ncat:tldr:50fee ncat: Listen for input on the specified port and write it to the specified file.$ ncat -l ${port} > ${filename}try on your machineexplain this command
-
ncat:tldr:d8734 ncat: Write output of specified file to the specified host on the specified port.$ ncat ${address} ${port} < ${filename}try on your machineexplain this command