ICT: Diary
D: 28 W: 05

< December 2021 >
Sun Mon Tue Wed Thu Fri Sat
 1234
567891011
12131415161718
19202122232425
262728293031 

Based on notaweblog.php by joshua stein

[ ] Tuesday, 28 December 2021 [ ]

Creating a simple webserver with while & nc

simple web server

The script:

#! /bin/sh # Simple Web Server - Works on OpenBSD # based on @antonmedv webserver: # https://twitter.com/antonmedv/status/1474838597991813127 while :; do nc -Nl 1088 <<EOF HTTP/1.1 200 OK Content-Type: text/html <html> <head><title>Simple NC Web</title></head> <body> <h1> Current date is $(date) </h1> </body> </html> EOF done

Shell Script Debugging

This shell script was giving me an syntax error:`while' unmatched this was due to a missing done in the script. shellcheck is an excellent resource for checking shell scripts.

CSS

Ctrl + F5 to force CSS reload in Firefox.

cssshell


$Id: diary,v 1.38 2025/01/01 22:43:54 fred Exp $