6 lines
92 B
Bash
Executable file
6 lines
92 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
cc -o echo echo.c
|
|
|
|
socat -d -d tcp-l:25232,fork,reuseaddr system:"./echo"
|