#!/bin/bash
# Skrypt uzyskujacy informacje o ip zewnętrznym i wysyłajacy
# ją na strone WWW
# Napisał na podstawie wskazówek z sieci: Hellish Knave

echo "<HTML><header><title>IP raport</title></header><body>" > index.html
curl -s http://whatismijnip.nl |cut -d " " -f 5 >> index.html
echo "<br>" >> index.html
date >> index.html
echo "</body></html>" >> index.html

filename="index.html"
hostname="strona.com"
username="user@strona.com"
password="hasło"
ftp -in $hostname <<**
quote USER $username
quote PASS $password
binary
put $filename
quit
**