Tagged Questions

*Expect* is a Unix/Linux extension for the Tcl scripting language. It was designed as an automation and testing tool and it makes it trivial to interact with complex programs, such as remote shells, security maintenance. It has particularly powerful response recognition.

learn more… | top users | synonyms

16
votes
4answers
3k views

Don't make me manually abort a LaTeX compile when there's an error

As suggested here, latexmk is a handy way to continually compile your document whenever the source changes. But often when you're working on a document you'll end up with errors and then latex will ...
10
votes
7answers
16k views

Using expect to pass a password to ssh

How can I use expect to send a password to an ssh connection. say the password was p@ssword and the ssh command was ssh me@127.0.0.1 What would I do with expect to a make it input the password when ...
7
votes
4answers
339 views

Other solutions/languages that are superior to the TCL-based Expect?

I am amazed by how Expect (TCL) can automate a lot of things I normally could not do. I thought I could dig deeper into Expect by reading a book, but before I do that I want to ask if there are other ...
7
votes
5answers
625 views

Is there an equivalent of Don Libes's *expect* tool for scripting interaction with web pages?

In the bad old days of interactive console applications, Don Libes created a tool called Expect, which enabled you to write Tcl scripts that interacted with these applications, much as a user would. ...
6
votes
5answers
8k views

How can I encrypt or hide passwords in a Perl script?

I am working on Perl script that uses Expect to login via telnet to remote machines (don't ask, gotta use telnet). I also do perforce p4 login operations as necessary and use expect to pipe in the ...
5
votes
3answers
953 views

Installing java on linux using ssh

I want to install java on many computers using ssh so I want to write a bash script that will do (roughly): for c in computers do scp jre--.rpm $c ssh $c 'sudu -s; chmod a+x jre--.rpm ; ...
5
votes
3answers
859 views

When to Expect and When to Stub?

I use NMock2, and I've drafted the following NMock classes to represent some common mock framework concepts: Expect: this specifies what a mocked method should return and says that the call must ...
4
votes
3answers
3k views

How can I flush the input buffer in an expect script?

I'm writing an Expect script and am having trouble dealing with the shell prompt (on Linux). My Expect script spawns rlogin and the remote system is using ksh. The prompt on the remote system contains ...
4
votes
3answers
5k views

Using conditional statements inside 'expect'

I need to automate logging into a TELNET session using expect, but I need to take care of multiple passwords for the same username. Here's the flow I need to create: Open TELNET session to an IP ...
4
votes
1answer
434 views

Is there autoexpect for Perl's Expect?

I would like to generate Perl Expect code automatically, does something like autoexpect exist for Perl's Expect??
4
votes
4answers
4k views

What is the difference between spawn and exec?

I'm learning to write a TCL (expect) scripts and I notice that some examples show to use spawn, while others show the command exec. I tried googling, but can't find what is the difference? Suppose I ...
3
votes
2answers
196 views

Is there an Expect equivalent gem for Ruby?

I have been looking for a Expect equivalent gem for ruby. If anybody knows one, will you please share me one about its name? I have tried searching on code.google and rubygems.org , sadly it did not ...
3
votes
1answer
195 views

TCL expect regular expression

I am trying to write one script which climbs up from one system to another through TCL/Expect. It is working for me. I need a regular expression in which expect "$ " and expect "# " is combined ...
3
votes
1answer
230 views

Help with Perl Expect

I am a newbie to Perl programming. Currently I have a task of understanding some code. I have to understand Perl Expect code and in this piece of code a line is there, mentioned below: my $exp = ...
3
votes
6answers
470 views

Alternative to awk

I'm using the following awk command in an expect script to get the gateway for a particular destination route | grep $dest | awk '{print $2}' However the expect script does not like the $2 in the ...
3
votes
3answers
256 views

expect - c program

I am trying to compile a program written in c using the expect.h header. I am trying this: cc -I/usr/include main.c -lexpect -ltcl cc -I/usr/include main.c I tried the same with gcc, but to no ...
3
votes
3answers
237 views

Is Expect Scripts Still Worth Learning?

Is still worth learning expect? Because I have not seen any new books on this topic? What would anyone recommend for a good book on this?
3
votes
1answer
2k views

How to return spawned process exit code in Expect script?

I use expect for running test scripts. Tests return success/failure through exit code. But expect return equivalent exit code. How to make expect return proper exit status? My tests are sql scripts ...
3
votes
1answer
155 views

Evaluating the Expect in perl

Hi I am using Expect in perl to connect to remote machine and execute certain functions. sample code is like $outfile="ls -lrt"; $outfile1="output"; $exp->expect(30,-re,".*bash-.*" => ...
3
votes
3answers
142 views

how to automate the testing of a text based menu

I have a text based menu running on a remote Linux host. I am using expect to ssh into this host and would like to figure out how to interact with the menus. Interaction involves arrowing up, down and ...
3
votes
3answers
526 views

bash command to repeatedly emulate keypress on a proceess

The nmap tool has such a feature - when you're performing a scan [#nmap -A -T4 localhost] and press "Enter" - it displays kind of status information "Timing: About 6.17% done" Question - how can I ...
3
votes
1answer
926 views

How can I send arrow key presses to a process using Expect.pm

Seems like this should be obvious, but how do I send arrow key presses to a process using Expect.pm? Does it depend on the terminal type I am using (vt100) or do I send keyboard scancodes? TIA.
3
votes
4answers
2k views

can I use expect on windows without installing cygwin?

expect is a module used for spawning child applications and controlling them. I'm interested in python/ruby.
2
votes
2answers
83 views

expect script + how to ignore strings if not apears

I write the following expect script in order to automate ssh login to remote Linux machine And run the command "cat /etc/APP_VERSION.txt file" Sometime I not asked from ssh command about- "Are ...
2
votes
3answers
128 views

The meaning of the regular expression in TCL/EXPECT

I read a tcl test script, it uses EXPECT. some of the code is: expect ".*hello.*yes.*morning.*" The "*" wild card is matching everything, but what about the "." in front of it? what does this mean? ...
2
votes
2answers
115 views

Automating integration testing for a command-line application

I have a set of command-line applications whose tests I'd like to automate. This is for testing an IaaS cloud setup, so the tests will invoke launching new virtual machine instances (e.g. ...
2
votes
2answers
118 views

Programmatically enter password on prompt within Python?

I need functionality similar to the Unix expect from within a Python script, as an external executable is prompting for password. I am currently doing this: p = ...
2
votes
0answers
300 views

RestTemplate, PUT method, and Expect: 100-CONTINUE

I'm a newbie to resttemplate and how it is backed by Apache http classes. So at first I thought all I needed to do was manually create http headers with Expect: 100 Continue in order to start ...
2
votes
2answers
267 views

Using Expect with Perl and pipe to a file

I'm fairly new to Perl and have been searching the interwebs for documentation for what I'm trying to do. I'm not having any luck. I have a program that outputs information to stdout with prompts ...
2
votes
1answer
327 views

Transfer environment variables with expect

I am writing an expect script and need to transfer environment variables over a telnet session (which the man page proudly touts as a feature but provides no other mention). So something like this: ...
2
votes
2answers
125 views

How do you spawn application from tcl/tk such that it's independant of the parent app?

I've tried just about EVERYTHING. I've tried exec. I've tried open with a pipe. I've tried expect's spawn command. I've even tried creating scripts that launch the application. None of this works. It ...
2
votes
4answers
280 views

How do I pass a Tcl data structure to Perl with Telnet in between?

I want to telnet into a Cisco router, login and execute a Tcl script that is locally stored in the router's flash. This Tcl script does some processing and should return a nested hash (preferred) or a ...
2
votes
2answers
192 views

why tcl expect exit unexpectly?

On Windows, I tested a tcl expect script as followed: package require Expect spawn "cmd.exe" expect ">" send "echo hello world\r" But the output printed "F:\Workspace\>", then it exited. Of ...
2
votes
3answers
511 views

Problems with terminating connection after running scripts on remote computer using shell script

This is the first time I am writing a shell script. I tried to do as much research as I can to avoid dumb/repetitive question. Please excuse if its repeat/dumb question. I have a shell script which ...
2
votes
2answers
430 views

Using Expect to administer machines via SSH, but does not complete all tasks

*Please do not pile on and tell me to just use SSH keys. If it bugs you that this is the way I am doing it, pretend that I am trying to telnet in instead. :-) * I am using an expect script to run ...
2
votes
1answer
503 views

Perl expect - how to control timeout on target machine

I am a newbie to perl. I am using perl expect module to spawn to a remote system. Execute a set of commands there one after another using the send module(like $exp->send("my command as string goes ...
2
votes
2answers
507 views

How to get Command history by cursor key in Linux tclsh : TCL

I am new to TCL and I wanted to know, if I can get the command history by using cursor key (like up arrow key) in TCL shell (tclsh). I am running tclsh on fedora with linux version 2.6.21.
2
votes
1answer
170 views

How can I debug expect_before behaviour

I am relatively new to TCL / expect and mostly modifying existing code. expect_before doesn't seem to do what I expect (which is fine) but I can't work out how to debug it. I have used -d option and ...
2
votes
3answers
1k views

how to use a shell script to supply a password when the interface asks for it

I have a script(dobrt) which upon executing asks for a password.How can i write a script which executes dobrt and automatically supplies the password it asks for. when i execute ./dobrt -p file.txt ...
2
votes
2answers
371 views

Expect-like tool for binary protocol testing

I'd like to write tests for a simple byte-oriented protocol using something like Expect. The test scripts would look like a plain stream of: send "data" expect "data" (Where send writes to stdout ...
2
votes
3answers
555 views

Expect - get variable from screen region based on row and column

I'm auto-interacting with an SSH session and an ERP program using Expect. Rather than relying on a regular expression to capture a variable in my expect script would it be possible upon receiving a ...
2
votes
1answer
645 views

(Tcl/Expect) clear screen after exit

I want to clear the screen (on the local machine) after exiting from my (semi) interactive expect script. Can I do that from within the script? Here's what I tried, that failed. #!/usr/bin/expect -f ...
2
votes
1answer
863 views

default timeout handler for expect script

I have a expect script that need to fail when certain any of the expect condition is not meet. For example: expect "Hello World" If the expect script does not find "Hello World" in certain amount ...
2
votes
3answers
2k views

How can I use Expect to enter a password for a Perl script?

I wish to automatically enter a password while running an install script. I have invoked the install script using the backticks in Perl. Now my issue is how do I enter that password using expect or ...
2
votes
1answer
389 views

Expectation on Mock Object doesn't seem to be met (Moq)

I'm experiencing some odd behavior in Moq - despite the fact that I setup a mock object to act a certain way, and then call the method in the exact same way in the object I'm testing, it reacts as if ...
2
votes
4answers
1k views

What are the advantages of rsh versus Perl's Expect.pm?

I have a Perl Expect.pm script that does some moderately complex stuff like packaging applications, deploying the application, checking for logs, etc. on multiple remote unix hosts. My predecessor ...
2
votes
2answers
3k views

Ruby - Problems with Expect and Pty

I'm trying to write a Ruby script that will ssh over to a server, run a given command, and fetch the output from it. Here's what I've got so far, mostly adapted from the Programming Ruby book: ...
1
vote
2answers
71 views

Capture ssh command output from java

I am trying to run some unix commands from my java code. I am using Google's Expect4J library for now and am open to any well documented libraries out there. The problem is I am trying to capture ...
1
vote
1answer
32 views

Connecting to a remote server and switching user with bash/expect

First post, thanks in advance for any help. I'm somewhat new to scripting in general but I've managed to build a nice wrapper in bash that's designed to collect some variables and then make some ...
1
vote
0answers
18 views

error “invalid command name \”/usr/bin/perl\" in expect script

I'm trying to add a one line perl command in to an expect script. For purposes of this thread, I've boiled my script down to 2 lines: #!/usr/bin/expect -f /usr/bin/perl -i -pe 's/\015/\012/g' ...

1 2 3 4 5 6