open-menu closeme
Home
RetroComp icon
Retro Computing Articles Composition Notebooks 8bit
DevOps icon
Automation K8s Done Right
GenAI icon
Fatlama Newsletter Generative AI
Projects icon
Software Projects Arduino Esp8266 SQLite
Status
Links icon
GitHub LinkedIn
About
🌐
English Italiano
github linkedin rss

Bash TCP conection feature

calendar Jan 7, 2021 · 1 min read
 featured unix-featured  · bash unix
 ·
Share on: twitter facebook linkedin copy

Bash support tcp connection out of the box :)

 

So you can write something like

#!/bin/bash
webhost="gioorgi.com"
exec 5<>/dev/tcp/$webhost/80
echo -e "GET / HTTP/1.1\\r\\nHost: $webhost\\r\\nContent-Length: 0\\r\\n\\r" >&5
# get reply:   HTTP/1.1 301 Moved Permanently^M
cat <&5

 


Recent Posts

  • 6,76%
  • Il tizio con il cappello che crede di comandare il mondo intero
  • Murderbot: i diari della macchina assassina
  • Breve guida agli ETF

Latest comments

    Giovanni Giorgi

    Copyright 1999-  GIOVANNI GIORGI. All Rights Reserved

    to-top