Revision: | 1.2 |
Committed: | Mon Jun 18 15:04:45 2001 UTC (23 years, 4 months ago) by tdb |
Content type: | application/x-sh |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.1: | +0 -0 lines |
State: | FILE REMOVED |
Log Message: | We no longer need these scripts as everything is done on one machine. |
# | User | Rev | Content |
---|---|---|---|
1 | tdb | 1.1 | #!/usr/local/bin/expect -f |
2 | |||
3 | set password [lindex $argv 0] | ||
4 | |||
5 | set timeout 60 | ||
6 | spawn ftp ftp.i-scream.org.uk | ||
7 | expect "*Name*:*" | ||
8 | send "iscream\r" | ||
9 | expect "*Password:*" | ||
10 | send "$password\r" | ||
11 | expect "*ftp>*" | ||
12 | send "binary\r" | ||
13 | expect "*ftp>*" | ||
14 | send "lcd /tmp/cvswww-send-tmp\r" | ||
15 | expect "*ftp>*" | ||
16 | send "dele cvswww-extract.tar.gz\r" | ||
17 | expect "*ftp>*" | ||
18 | send "put cvswww-extract.tar.gz\r" | ||
19 | expect "*ftp>*" | ||
20 | close | ||
21 | wait | ||
22 | exit 0 |