7 lines
57 B
Bash
Executable File
7 lines
57 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while [ 1=1 ]
|
|
do
|
|
nc 192.168.200.1 23
|
|
done
|