Advertisement
vedranvinko

server

Dec 26th, 2021
1,203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.17 KB | None | 0 0
  1. while :; do nc -q 0 -l 80 <<EOF
  2. HTTP/1.1 200 OK
  3. Content-Type: text/html
  4.  
  5. <html>
  6.     <body>
  7.         <h1> Current date is $(date) </h1>
  8.     </body>
  9. </html>
  10. EOF
  11. done
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement