mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 04:31:29 +00:00
12 lines
166 B
Lua
12 lines
166 B
Lua
--This script reads data from the standard input and discards them.
|
|
|
|
while true do
|
|
|
|
data = io.stdin:read(512)
|
|
|
|
if data == nil then
|
|
break
|
|
end
|
|
|
|
end
|