mirror of https://github.com/9001/r0c.git
8 lines
62 B
Bash
8 lines
62 B
Bash
|
#!/bin/bash
|
||
|
while true
|
||
|
do
|
||
|
telnet 127.0.0.1 2323
|
||
|
sleep 1
|
||
|
done
|
||
|
|