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