Question 4
Consider a simple web server using command prompt.
Filename - Hello.sh
#!/bin/bashwhile true; doecho -e "Current date and time is \n\t $(date)"| nc -l localhost 4100;doneIf this program creates a server in a terminal, the correct way to make a request to this server is _______.