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 Misterio Esp8266 SQLite
Status
Links icon
GitHub LinkedIn
About
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

  • Misterio Is Back
  • Netflix retro weird spirit
  • Yakuza Blues
  • FreeBSD on MacBook Mid 2009 with BroadCom WIFI

Latest comments

    Giovanni Giorgi

    Copyright 1999-  GIOVANNI GIORGI. All Rights Reserved

    to-top