Expect : exp_external not working / If not showing error


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Expect : exp_external not working / If not showing error
# 1  
Old 09-30-2013
Expect : exp_external not working / If not showing error

The big problem is that exp_internal isnt working... which makes it difficult to determine whats happening with the if statement.

1. why isnt exp_internal not working ?
2. Is there a better way to do the check of a file ?

Im trying to find a "tighter" way to check that a file exists and has content. Didnt want to post in
https://www.unix.com/shell-programmin...-ksh-if-s.html

because of the more important exp_internal issue.



Code:
#!/usr/bin/expect
exp_internal 1
set nam "popeye"
set pswd "thesailorman"
set hlist "hostlist"
set clist "cmdlist"
send_user "$clist\n"
if { [llength $clist] <= 0 } {
         send_user " empty or not found."
      }
exp_internal 0
close

The script output
Quote:
/home/popeye> tnew
cmdlist

Quote:
/home/popeye> ls -l cmdlist
ls: cannot access cmdlist: No such file or directory

expect1.1> llength cmdlist
1
expect1.2> exit

Thanks Regards
POP
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Expect utility not working for Solaris 11

iam withdrawing this thread , It was my mistake I didn't read the code properly (0 Replies)
Discussion started by: boncuk
0 Replies

2. Shell Programming and Scripting

Expect not working inside my Bash script

I am trying to execute expect command inside by small bash script to login into servers using key authentication method. My script is as follows: #!/bin/bash HOST=$1 /usr/bin/expect -c " spawn ssh -i /root/.ssh/id_rsa root@$HOST expect -exact "Enter... (3 Replies)
Discussion started by: John Wilson
3 Replies

3. Shell Programming and Scripting

scp not working in expect script

Hi All, I run the scp command in shell prompt without issue, but when on expect script as below: #!/usr/bin/expect spawn scp /var/spool/sms/failed.tar.gz abc@10.10.12.2:/home/abc expect "abc@10.10.12.2's password: " send "abcfef\r" exit 0 It looks not working at all and the... (3 Replies)
Discussion started by: elingtey
3 Replies

4. Shell Programming and Scripting

Expect script not working in crontab with minicom

Hi All, I am testing expect script in command prompt without issue, but in crontab it is not working, i check the output error as below: #cat /var/log/testexp.log spawn minicom -C /var/log/minicom1.log No cursor motion capability (cm) AT+COPS=? I am new in scripting, together... (1 Reply)
Discussion started by: elingtey
1 Replies

5. Shell Programming and Scripting

Script working when run manually but not in crontab showing path not found

i have a script running using variable defined in .profile when i run that script manually its working but when i run the same script through cron its giving path not found I had defined path in .profile (3 Replies)
Discussion started by: raj_saini20
3 Replies

6. Shell Programming and Scripting

Expect Script Not working with Crontab

I have the following expect script sitting on a Linux box. === #!/usr/bin/expect -f # # backup.expect # # Expect script to backup a firewall via a SSH session # # set firewall set username set password set prompt set filename match_max 50000 spawn ssh -l... (2 Replies)
Discussion started by: alagondar
2 Replies

7. Shell Programming and Scripting

ssh is not working while calling through expect shell script

Hi, Please share you experience and way out on below error:--> #!/bin/bash -xv FILE=login.txt + FILE=login.txt CONNECT=sshlogin.exp + CONNECT=sshlogin.exp SERVERNAME=$1 + SERVERNAME=192.168.12.1 MyServer="" + MyServer= MyUser="" + MyUser= MyPassword="" + MyPassword= exec 3<&0 +... (6 Replies)
Discussion started by: manish_1678
6 Replies

8. Shell Programming and Scripting

TCL/Expect not working as expected

I am having an issue with TCL\Expect; I am passing arguments via the commandline that are read in via "lrange $argv". One of those var's is a password with characters that need to be escapaed, after escaping them an hitting enter expect is placing curly braces around my password... why?! ... (4 Replies)
Discussion started by: RiSk
4 Replies

9. Shell Programming and Scripting

Expect not working

Im trying to write a script that will change user to cyrus then reconstruct mailbox for the user defined in the parsed argument. If i was loggin in to terminal to do this manually for wendys mailbox i would do this sudo su cyrus /usr/bin/cyrus/bin/reconstruct -r user/wendy That would... (4 Replies)
Discussion started by: timgolding
4 Replies

10. Shell Programming and Scripting

Expect stdin not working

My expect script is not stopping to accept stdin puts "Hey dude, how old might you be?" gets stdin Age While running this the script does not wait for user response. What could be the problem? Pls help (0 Replies)
Discussion started by: balaji_prk
0 Replies
Login or Register to Ask a Question