Borland TurboBASIC & TurboPASCAL stuff from 1998 when i started with programming...
[mirrors/Programs.git] / bash / bash-httpd / httpd.bash.save
1 #!/bin/bash
2
3 listen_port=8080;
4 web_root='./';
5
6 while true; do
7 nc -l -p $listen_port -e "$0 --client";
8 done;
This page took 0.341685 seconds and 4 git commands to generate.