Inital commit

This commit is contained in:
2023-04-12 00:25:33 +02:00
commit f1f0b29fb6
6 changed files with 81 additions and 0 deletions

5
kapitel6/mini-httpd.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
while true; do
cat data.txt | nc -w1 127.0.0.1 -l 8999;
done