#!/bin/sh
#
#############################################################################

ftp -v -n -i some.site.com << EOF
user username password
cd public_html
lcd /usr/lib/ppp
prompt
bin
send new_ip.html ip.html
send new_index.html index.html
send new_side.html side.html
quit
EOF

ftp -v -n -i another.site.com << EOF
user username password
lcd /usr/lib/ppp
prompt
bin
send new_plan.txt plan.txt
quit
EOF

