A non-trivial example of how to use user contexts for trivial scheduling.
[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.281792 seconds and 4 git commands to generate.