#!/bin/bash ### # Połącz się ze stroną internetową i pobierz zawartość strony głównej ### exec 3<>/dev/tcp/www.google.com/80 echo -e "GET / HTTP/1.1\nHost: www.google.com\nConnection: close\n\n" >&3 cat <&3