diff --git a/docs/nmap.usage.txt b/docs/nmap.usage.txt index f553ad4b0..512492e0c 100644 --- a/docs/nmap.usage.txt +++ b/docs/nmap.usage.txt @@ -95,6 +95,7 @@ OUTPUT: --iflist: Print host interfaces and routes (for debugging) --append-output: Append to rather than clobber specified output files --resume : Resume an aborted scan + --noninteractive: Disable runtime interactions via keyboard --stylesheet : XSL stylesheet to transform XML output to HTML --webxml: Reference stylesheet from Nmap.Org for more portable XML --no-stylesheet: Prevent associating of XSL stylesheet w/XML output diff --git a/docs/refguide.xml b/docs/refguide.xml index 09bc7b585..1b808ed62 100644 --- a/docs/refguide.xml +++ b/docs/refguide.xml @@ -4120,6 +4120,23 @@ hosts with at least one + + + (Disable runtime interactions) + + runtime interactiondisabling + + + + At times, such as when running Nmap in a shell background, + it might be undesirable for Nmap to monitor and respond to user + keyboard input when running. (See + about how to control + Nmap during a scan.) Use option + to prevent Nmap taking control of the terminal. + + + (Set XSL stylesheet to transform XML output) diff --git a/nmap.cc b/nmap.cc index 18604259a..9d0db842b 100644 --- a/nmap.cc +++ b/nmap.cc @@ -291,6 +291,7 @@ static void printusage() { " --iflist: Print host interfaces and routes (for debugging)\n" " --append-output: Append to rather than clobber specified output files\n" " --resume : Resume an aborted scan\n" + " --noninteractive: Disable runtime interactions via keyboard\n" " --stylesheet : XSL stylesheet to transform XML output to HTML\n" " --webxml: Reference stylesheet from Nmap.Org for more portable XML\n" " --no-stylesheet: Prevent associating of XSL stylesheet w/XML output\n"