mirror of
https://git.phreedom.club/localhost_frssoft/bbs-telnet
synced 2024-11-23 19:59:19 +02:00
8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "listening for commands on 0.0.0.0:$1"
|
|
|
|
socat -v -v TCP-LISTEN:$1,reuseaddr,pktinfo,fork SYSTEM:"./executor.sh"
|
|
|
|
|