#!/bin/bash ########################################################## ## ## ## Bashweb, a cursed (probably static) web server ## ## written in bash. ## ## ## ########################################################## export bashweb_version="0.1.1" main () { nc -l -p 1234 < /tmp/backpipe | ./preprocessor/main.sh 1> /tmp/backpipe } rm -f /tmp/backpipe mkfifo /tmp/backpipe while true do main &>>log done