This is an example of a nice netcat one line server (Mostly just to show how cool pipes can be)
You just need to do a script that we will call test.sh
#!/bin/bash
echo "************PRINT SOME TEXT***************\n"
echo "Hello World!!!"
echo "\n"
echo "Resources:"
echo "\n"
echo "Addresses:"
echo "$(ifconfig)"
echo "\n"
And then while in the same folder you run the one line server:
while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; sh test.sh; } | nc -l 1234 -q 1; done &test.shis the script that we will run and take its output1234is the port that we will use.-q 1is the timeout value, change it if your script is slow- pretty much everything else should remain immutable.
So thats it!!! Thanks for joining my ted talk....I mean, reading my README.md
YES, I KNOW THERE ARE MORE THAN ONE LINE BECAUSE OF MY TEST.SH, but that is not a part of the server, just the data.