1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
186 B
Bash

#!/bin/sh
# e as a service
# usage:
# ./eaas.sh
# xdg-open http://127.0.0.1:3333
while true; do
( printf "HTTP/1.0 200 OK\r\n\r\n<html><body>" && yes e ) |
nc -w 1 -l -p 3333
done