- KKTerm-style UI: Activity Rail, Connection Sidebar, Tabbed Workspace - Serial Port connection (System.IO.Ports) - SSH connection (SSH.NET, password/key/keyboard-interactive) - Local Shell via Windows ConPTY (PowerShell/Bash/Cmd) - VT100/ANSI terminal rendering (owner-drawn, double-buffered) - TTL script engine: send, sendln, wait, pause, timeout, if/while, messagebox - Group execution: waitall, sendlnall, sendlngroup (Barrier sync) - Run All / Run Group toolbar buttons - SFTP file browser sidebar (SSH.NET SftpClient) - PDU control via SNMP (pduconnect/pductrl commands) - Settings: Terminal prefs, Shell config, PDU monitoring - About page with changelog - AppSettings persisted to %LocalAppData%\ETTerms\ - Dark theme throughout (KKTerm purple accent)
18 lines
295 B
Turtle
18 lines
295 B
Turtle
|
|
prompt = '6000#'
|
|
|
|
wait '6000 login:'
|
|
sendln 'admin'
|
|
wait 'Password: '
|
|
sendln ''
|
|
|
|
waitall prompt
|
|
sendlngroup A "show version"
|
|
sendlngroup B "show int b"
|
|
waitall prompt
|
|
sendlngroup A "show version"
|
|
sendlngroup B "show int b"
|
|
waitall prompt
|
|
sendlngroup A "show int b"
|
|
sendlngroup B "show version"
|