6 lines
79 B
Bash
6 lines
79 B
Bash
#!/bin/bash
|
|
while true; do
|
|
cat data.txt | nc -w 1 127.0.0.1 -l 8999;
|
|
done
|
|
|