Have you ever wondered how a Web server works under the hood? Moreover, would you be willing to sharpen your Shell scripting skills?
Maybe this gu...
For further actions, you may consider blocking this person and/or reporting abuse
Awesome ;-)
Thanks for this. I am m using macos terminal, when invoking the
nc -Uvl server.sockcommand there is no prompt thereafter. Do i need to update nc or bash?Good question, unfortunately AFAIK the verbose in macOS for netcat is not as good as in Linux
really informative article , thank you
Awesome content. This will help me to integrate much more power in my personal framework. Thank you
In my experience using this tutorial, the script only makes single request. Of course this can be handled by using a single ampersand (&), or using GNU Parallel, but it's still ineffective, as you have to explicitly define the number of threads. I think this is another reason why no one writes web frameworks in bash
using socat we are able to perform requests using fork. we can’t use threads here, there’s no way to pthread_create from a standalone bash script.