#!/usr/bin/env expect spawn ftp legendpower.com expect "Name" send "legendpower\r" expect "Password:" send "lekker777\r" expect "ftp>" send "cd www/test\r" expect "ftp>" send "lcd ~/sites/legendpower.com/v1/www/test\r" expect "ftp>" send "prompt no\r" expect "ftp>" send "mput *.php\r" expect "ftp>" send "mput *.css\r" expect "ftp>" send "binary\r" expect "ftp>" send "mput images\r" expect "ftp>" send "ascii\r" expect "ftp>" send "cd smarty/templates/tmpl\r" expect "ftp>" send "lcd smarty/templates/tmpl\r" expect "ftp>" send "mput *.tpl\r" expect "ftp>" send "cd ~\r" expect "ftp>" send "lcd ~/sites/legendpower.com/v1\r" expect "ftp>" send "bye\r" interact