-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update expect scripts for BASIC and FOCAL to work with sdf.org.
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ if { $argv == "" } exit | |
if [catch { set file [open $argv "r"]}] { puts $input ; exit } | ||
close $file | ||
|
||
spawn telnet 192.168.1.6 4000 | ||
#spawn telnet 192.168.1.6 4000 | ||
spawn env vintage=tss8 ssh -o SendEnv=vintage [email protected] | ||
#log_file session.log | ||
set timeout 10 | ||
expect "TTIX device, line " { sleep 1 ; send "\002s\r" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/usr/bin/expect -- | ||
# tss8-focal -- start a FOCAL session on tss8 by uploading a file | ||
# Copyright (c) 2021-2024 Renaud Fivet | ||
|
||
if { $argv == "" } exit | ||
if [catch { set file [open $argv "r"]}] { puts $input ; exit } | ||
close $file | ||
|
||
#spawn telnet 192.168.1.6 4000 | ||
spawn env vintage=tss8 ssh -o SendEnv=vintage [email protected] | ||
#log_file session.log | ||
set timeout 10 | ||
expect "TTIX device, line " { sleep 1 ; send "\002s\r" } | ||
while 1 { | ||
expect { | ||
"LOGIN PLEASE\r\n." { send "login 2003 tss8\r" ; break } | ||
"\r\n." { send "KJ\r" } | ||
timeout { send "\002s\r" } | ||
} | ||
} | ||
|
||
expect "\r\n\r\n." | ||
send "r focal\r" | ||
expect "SHALL I RETAIN LOG, EXP, ATN ?:" { send "no\r"} | ||
expect "SHALL I RETAIN SINE, COSINE ?:" { send "no\r"} | ||
expect -ex "\r\n*" { | ||
set file [open $argv] | ||
while 1 { | ||
if {[gets $file line] == -1} break | ||
set line [string trimleft $line] | ||
set line [string toupper $line] | ||
set len [string length $line] | ||
while {$len > 40} { | ||
set outs [string range $line 0 39] | ||
set line [string range $line 40 end] | ||
incr len -40 | ||
send -- $outs | ||
expect -ex $outs | ||
} | ||
|
||
if {$len > 0} { | ||
send -- $line | ||
expect -ex $line | ||
} | ||
|
||
send "\r" | ||
expect -ex "\r\n*" | ||
} | ||
|
||
close $file | ||
} | ||
|
||
puts ">>>" | ||
interact |