Files
demonerna-pa-internet/kapitel6/mini-httpd.sh
2023-04-12 00:25:33 +02:00

6 lines
78 B
Bash

#!/bin/bash
while true; do
cat data.txt | nc -w1 127.0.0.1 -l 8999;
done