*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.
0
votes
0answers
43 views
how to escape asterisk/glob when sending command to linux host
i've written a script which takes the contents of a hostfile and a cmdlist, logs into each host in turn and executes each command in cmdfile then returns the output. a typical session might look like ...
0
votes
0answers
23 views
Using Expect in a script, how do I get the script to skip an entry line in a source file?
Here is the script.
#! expect
set timeout 60
proc dostuff { currenthost} {
send "en\r"
expect "Password:"
send "XXXXXXX\r"
expect "#"
send -- "conf t\r"
expect -- "#"
send -- "enable aaa console\r"
...
0
votes
1answer
21 views
Rsync ssh file transfer through expect showing error when executed through while loop in bash
My program needs automatic file transfer to many remote systems. So tried using expect for RSYNC SSH file transfer. While I run the .ex file through terminal providing the necessary inputs or through ...
0
votes
0answers
19 views
using expect to automatically put pubkey on server
I'm attempting to use expect as part of a client setup utility (for a unison cron job) which will automatically put their machine's pubkey on our server so that unison can continue to work over ssh ...
0
votes
1answer
21 views
Send multi word string in expect script
First of all, I'm new to expect scripting...
I'm using RHEL 5.6 Linux.
I want to call an expect script out from a bash script and pass it two arguments,
a subject and a body variable (read from a ...
0
votes
1answer
31 views
how to wait for a process to complete using tcl-expect
I am writting a script using expect in which I have to rlogin to some host & after that I need to send some command . now I want to exit to that host and relogin again to some other host and send ...
0
votes
2answers
20 views
expect into remote system, get output to local shell variable
I am trying to get an expect script to ssh into a remote system, and get the output of a remote command.
I want to have that output available locally.
As an example, ssh into the system and get the ...
0
votes
0answers
37 views
Bash expect wait wget download
Show you how to use 'expect' identify the end of downloading the file via 'wget'?
#!/bin/bash
function copy {
local ssh_login=$1;
local ssh_ip=$2;
local ssh_password=$3;
local ...
0
votes
0answers
35 views
TCL EXPECT command send from python
I'm trying to exec Tcl/Expect script code from python but an exception occurs when I try.
This is issue description
Tcl expect code was written sometimes ago.
Now python is new target for testing
I ...
-1
votes
1answer
25 views
How to set a remote environment variable with Expect?
I'm doing this within Perl, using the Expect Perl module. Anyway, after logging in and getting prompt, I am trying to verify that I was actually able to get a prompt, and I am trying to set PS1. I am ...
0
votes
0answers
15 views
How to pass standard input to an spawned process?
For example, this expect script:
spawn ssh -T -o StrictHostKeyChecking=no myhost ls
expect "assword:" { send -- "welcome1\r";}
expect eof
Runs the ls command as expected.
Assuming the ~/file ...
-1
votes
1answer
24 views
Is expect code going to through error if i reboot remote machine?
i am not sure what will happen so i am asking this question and also because i didn't tested this.i have a function send command which sends commands to remote machine and it works fine for normal ...
1
vote
0answers
57 views
Why is this expect shell script to ssh into and reboot cisco appliances failing?
Created this simple script to perform a reboot on a Cisco (Telepresence) CTS1300, 1000 and 3000 codecs. The goal is to restart a bunch of these units weekly through the use of a cron. I am using ...
0
votes
2answers
27 views
Expect exits too soon
I have the following bash script (script.sh):
#!/bin/bash
read -p "Remove? (y|n): " answer
echo "You answered '$answer'."
and I would like to drive it using expect. I have the following script ...
0
votes
1answer
27 views
How to capture output of expect script command with expect_out?
#!/usr/bin/expect -f
spawn telnet IP PORT
expect "Escape character is '^]'"
send loadtime
set accum {}
expect {
-regexp {..*} {
append accum "${accum}$expect_out(0,string)"
...
0
votes
1answer
65 views
Need help to show green/red color text in .txt file written by a tcl script
I am using an Expect code which works in below fashion, i am trying to see the text written inside the file in green color for "passed" and red for word "failed". I tried the below ascii style but of ...
0
votes
0answers
29 views
Best way to collect logs from a remote server
I need to run some commands on some remote Solaris/Linux servers and collect their output in a log file on my local server.
Currently, I'm using a simple Expect script, residing on the local server ...
0
votes
1answer
34 views
Expect scripting TCL
I want to automate the following interaction using Tcl/expect, the script start and do nothing
the expect command can not expect all the output of a command
#!/usr/bin/expect
set timeout 10
set ...
0
votes
0answers
36 views
Issue while using expect script in bash script
I learned from the same site that we can embed expect script in bash script as shown below:
echo $hostname
/usr/bin/expect -<<EOD
spawn ssh "-o StrictHostKeyChecking no " bmaddi@10.102.238.158
...
0
votes
1answer
23 views
read output text on calling spawn.send()
I am new to ExpectJ Java programming. I downloaded jar's and able to do few send() and expect() methods. send() would fire a command on console and expect() would identify any prompt's so inputs can ...
0
votes
2answers
26 views
How to pass a value from bash into expect?
I've got a really simple bash script which requires expect.
I need to pass a value from bash into expect and I'm not trying to ssh into another server or anything (cause I only seem to find questions ...
0
votes
0answers
37 views
expect script works fine standalone not from bash script
This is related to a previous query, I am running a expect script,which login to a server check if iptables running and return the log file of the status. There is a hostfile also given with server ...
5
votes
1answer
108 views
How to get the complete output from expect when the internal buffer size of expect_out(buffer) size exceeds?
I dont know whats happening but i am not getting the complete output from the remote command executed possibly because expects internal buffer is getting execceded.
proc SendCommands { Commands } ...
0
votes
1answer
51 views
How can i specify switches on command line in tcl?
If i have an expect script and i want to execute certain part of code depending on the requirement.suppose if i have some procedures in my code like below
proc ABLOCK { } {
}
proc BBLOCK { } {
}
...
0
votes
1answer
61 views
Expect with catch statement in Tcl
My code :
spawn telnet $ip
expect "Password: "
exp_send "$paswd\r"
expect "Router>"
exp_send "en\r"
expect "Password: "
exp_send "$paswd\r"
expect "Router#"
exp_send "\r"
expect "Router#"
...
0
votes
0answers
22 views
Limitation over ssh in loop?
I have an expect script which loops over muliple switches but it can only process less than 15 swicthes in a loop parallely. when i give more than 15 cisco swicthes to be processed parallely i get ssh ...
0
votes
1answer
27 views
How to fill password in Linux using expect?
I have an executable binary which when runs asks for a share password that's common to that service. I want to automate the password filling by using the shell script 'expect' and 'send' feature. I ...
1
vote
1answer
73 views
very complex quotes in python/shell string
I have a very long string ssh_cmd, I get it from
cmd = """kill -9 `ps -ef|grep "udp_receiver"|grep -v "grep"|awk '{print $2}'`"""
HostName="133.33.22.1"
ssh_cmd = """ssh -t inria_spoofing@{0} 'sudo ...
0
votes
0answers
77 views
automate scp using expect or Pexpect: how to deal with timeout when downloading
I use Pexect to write a scripts to automate scp
but pexecpt are rarely used by people
so I ask about expect
because it resemble Pexpect very much
and so I can have some ideas
if I use a expect loop ...
0
votes
1answer
79 views
How to expect multiple prompts correctly
I have an expect script in which I am currently looking for multiple prompt types and sending commands in response. I am aware of regular expression matching using "-re" but I'd like to know of the ...
0
votes
0answers
52 views
expect script regexp not matching
I have the following expect script and trying to match output which is returning empty lines. Can someone help with the regexp?
#!/usr/bin/expect -f
set force_conservative 1
set timeout ...
0
votes
2answers
63 views
expect script to ssh returns invalid command name
I am trying to write an expect script which would ssh into a server, send sudo su, then check the iptables status and put the output in a log file on the server. Below is the script.
1 ...
0
votes
0answers
55 views
expect script failing with the error “The system cannot find the file specified” executed from php exec()
I am currently working on a script that logs into an ASA executes a command and then exits the ASA.
I developed an expect script to login to the ASA (using activestate expect on Windows 7 server). ...
0
votes
1answer
141 views
foreach loop in expect script not accepting variables
#!/bin/bash
expect << EOF
exp_internal 1
spawn ssh nbhambha@10.118.137.78
expect "ssword:"
send "********\r"
sleep 3
set list [open list1 r]
foreach line \$list
{
expect " $"
send ...
0
votes
1answer
62 views
how to get the parent process id in expect script?
I want to know the parent processs id of the parent inside expect script how would i do it.
I used tried to use and got this error
[sesiv@itseelm-lx4151 ~]$ invalid command name "id"
while ...
0
votes
0answers
29 views
expect , #1 spawning ssh, #2 then running app, then send EOD to #2
expect , #1 spawning ssh, #2 then running app, then send EOD to #2
Hi all ;
I created expect script .
I can spawn and login to a server using ssh
I am authorized properly
inside that machine, I ...
0
votes
2answers
101 views
ssh to cisco ASA and store output to a file
I am having trouble writing a shell-script for ssh into cisco ASA and store command output in a text file.
1.key exchange not needed in the script as it is not first time log in.
2. from my centOS ...
0
votes
1answer
51 views
Running Mount Script at Ubuntu Startup
I have this script to automount my BoxCryptor folder (Dropbox encryption) in Ubuntu. Everything works fine when I run it from the command line, but...when I place this in my "Startup Applications" it ...
0
votes
1answer
40 views
Use Pexpect or expect for a ssh taskļ¼ and how to capture errors
I want to use an expect or Pexpect file to automate a shell command
like:
for host in HostList:
ssh -t kitty@host 'sudo nohup bash -c "./tcp_sender > /dev/null 2>&1 &"'
if I ...
0
votes
1answer
60 views
Need assitance with expect script
I am trying to achieve a certain expect script I have a txt file..
It contains data like
1 ip telnetname slot1 slot2 assoc1 assoc2 mep1 mep2
2 ip telnetname slot1 slot2 assoc1 assoc2 mep1 mep2
I ...
0
votes
0answers
42 views
Fetch sftp error values in expect shell
I was trying to do a sftp using expect shell. But I was not able to fetch the different sftp error codes that could possibly occur. Instead I was getting the return value as 0
Here is the code ...
0
votes
1answer
76 views
Need command-fedora-keyboard navigation key substitution in TCL script for a switch (CLI)
I have a switch (CLI based) that takes me to the present STP setting when you hit the alphabets (which iam able to automate with tcl) but when it comes to changing the STP setting say from RSTP to ...
1
vote
1answer
38 views
Unable to call a command on windows server by connecting through linux
I am using a following script which connects to windows server from Linux, but after connecting i have to call the a command by doing to a location under D: drive of windows followed by some folders ...
0
votes
0answers
35 views
Catching return code from an expect script within an expect script
I have a first bash script test.sh which only contains:
#!/bin/bash
exit 1
And a second script in expect which only contains:
#!/usr/bin/expect
exit 1
I'm trying to catch the return code when I ...
1
vote
2answers
106 views
How do I check for spawn_id that's alive? (TCL)
I spawn a telnet process to a host. I send a command, expect something
in return. This goes on for a while. But somewhere in between this
interaction, the connection to the host is lost mysteriously ...
0
votes
0answers
72 views
Using Tcl TCOM I am unable to read through a list of ip telnet and grab specific info from output and log to spread sheet
I am new just starting TCL scripting, I have been playing around but I'm unable to figure out how to do the below.
I have a list id IP address and I need to do a list of command (show version) on and ...
0
votes
1answer
44 views
How can i avoid log files being garbled and to run backgrund processes?
I was a complete newbie to expect and after all finidings on google and expect book
i wrote this code but still it takes about 30-40 minutes to perform a task over a single ip address.
now i have ...
0
votes
0answers
18 views
How can i send user typed keystrokes to remote mahcine in expect?
I want to send user typed commands to remote terminal from my linux machine for multiple ips
and I want for loop to stop as long as user is not finished to typeas many thing he want to send to remote ...
0
votes
0answers
58 views
Expect script erroring from Nagios, but good from cli
I'm now learning Expect to try to automate a check on a remote system under Nagios Core, and while the script runs perfectly from the 'nagios' user account (which is what Nagios runs its commands ...
0
votes
2answers
22 views
how to automize the running of a command that prompts for user input?
I have a program that ask for input. For example:
$ program arg1 arg2
Enter the value of arg3: foo
Enter the value of arg4: spam
$
How can I automatize the running? I suspect the expect provide the ...

