Bash script with expect


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bash script with expect
# 1  
Old 07-18-2016
Bash script with expect

Dear all
Hi
I want use expect in bash so that we can not use these with each other

/bin/bash. With. /usr/bin/expect

How can use these with on script or how can call a script from other script

Code:
#!/bin/bash
clear
echo "================================== "
echo "Enter your Esxi IP"
echo "================================== "
echo -n "IP:"
read IP
clear
echo "================================== "
echo "Enter your Host Name"
echo "================================== "
echo -n "Host Name:"
read Name
clear
echo "================================== "
echo "Enter your Esxi Authentication"
echo "================================== "
echo -n "UserName:"
read user
echo -n "Password:"
read p
/usr/bin/expect   <<EOF
set force_conservative 0
set timeout 4
spawn ssh vi-admin@172.20.35.222
expect "password:"
send  "P@ssw0rd6555\r"
expect "$"
send  "echo /usr/lib/vmware-vcli/apps/general/credstore_admin.pl add >/tmp/100.txt\r"

send "exit\r"

EOF


Last edited by Baber; 07-19-2016 at 01:21 AM..
# 2  
Old 07-19-2016
I don't understand the question.

If you use shared keys as the ssh protocol intends you do not need to embed the password inside the script and aren't forced to use the third-party expect brute-forcing tool. You have picked the most difficult method possible as ssh intentionally prevents you from automating passwords.

Then your program becomes as simple as
Code:
ssh vi-admin@172.20.35.222 'echo /usr/lib/vmware-vcli/apps/general/credstore_admin.pl add >/tmp/100.txt'

# 3  
Old 07-20-2016
thanks i use your script and was ok but in local server i insert a digit for example 5 but in script $p can not get 5 what is problem ?

write this but not show anything except $p when cat ll.txt file :


Code:
read p
ssh vi-admin@172.20.35.222 'echo /usr/lib/vmware-vcli/apps/general/credstore_admin.pl add --server  --username  --password "$p" > /tmp/ll.txt'

what is problem ?
# 4  
Old 07-20-2016
The value of $p is not expanded because it was within single quotes try:

Code:
read p
ssh vi-admin@172.20.35.222 'echo /usr/lib/vmware-vcli/apps/general/credstore_admin.pl add --server  --username  --password \"'$p'\" > /tmp/ll.txt'

or, if you have a larger script or are using a lot of quoted variables, awk scripts ect. this works quite well:

Code:
ssh -T vi-admin@172.20.35.222<<EOT
    echo '/usr/lib/vmware-vcli/apps/general/credstore_admin.pl add --server  --username  --password "$p"' > /tmp/ll.txt
EOT


Last edited by Chubler_XL; 07-21-2016 at 12:07 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Bash script + expect

im very happy to back for this forum I have servers with alias of double dns extentions: sample: servera.test.com servera.test1.com serverb.test.com serverb.test1.com I need to login to that severs and executing the set of commands if test.com failed then try to login via... (0 Replies)
Discussion started by: prakash0106
0 Replies

2. Shell Programming and Scripting

Password check in bash script calling on expect

password check in bash script calling on expect Background: I have to copy a file from one server, to over 100 servers in a test environment. once the file is copied, it requires to have the permissions on the file changed/verified. These are all linux servers. most of them have the same... (1 Reply)
Discussion started by: 2legit2quit
1 Replies

3. 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

4. Shell Programming and Scripting

EXPECT Bash Script Error Control

Hello Geeks once more, Thanks for all the help you have been rendering.. I have a script that depends on the output of an expect statement but sometimes the main script misbehaves which I believe is a result of SSH communication error, how can I apply an error control to know whether the... (2 Replies)
Discussion started by: infinitydon
2 Replies

5. Shell Programming and Scripting

Acces Variable from expect-Script in bash-Script

Hi all, I have a little problem with a expect in a bash Script. The hull of my script: #!/bin/sh ( expect -c ' set a \"eee\"; # the variable a ' ) echo $a; # using the variable out of the expect script I would like to use the variable out of the expect script(in bash),... (3 Replies)
Discussion started by: gandalfthepink
3 Replies

6. Shell Programming and Scripting

Bash Script: Send files to SFTP using Expect

I have to send few gzipped files from local server to SFTP server. My Server Info Distributor ID: Ubuntu Description: Ubuntu 12.04.4 LTS Release: 12.04 Codename: precise Created a bash script and could able to send files to sftp, but i want to send email if transfer is successful. ... (1 Reply)
Discussion started by: krux_rap
1 Replies

7. Shell Programming and Scripting

Expect script called in loop from Bash Script

Having issues with an expect script. I've been scripting bash, python, etc... for a couple years now, but just started to try and use Expect. Trying to create a script that takes in some arguments, and then for now, just runs a pwd command(for testing, final will be command I pass). Here is... (0 Replies)
Discussion started by: cbo0485
0 Replies

8. Shell Programming and Scripting

Cannot get this bash/expect script to run under a crontab

#!/bin/bash # # RAP configuration script # # Usage: ./rap.sh # # Requires: expect, tcl # # Script expects to find a file called rap.csv located in the same directory as the script. If the file is placed # in a different directory, modify the custom entries section to specify the absolute... (8 Replies)
Discussion started by: mrkool
8 Replies

9. Shell Programming and Scripting

Alternate to SLEEP for EXPECT within BASH script?

Fairly new to the System Admin world, and this is my first post here, hoping to get some clarification. I am using a BASH script to automate some Logfile Archiving (into .tars). The actual logfiles are accessed through an SSH, so I have used the following EXPECT sub-script within my main BASH... (8 Replies)
Discussion started by: Goatfarmer03
8 Replies

10. Shell Programming and Scripting

expect in bash script

Hi, I'm writing a shell script that calls a few commands that prompt the user for two simple yes/no questions. if the answers are consistent (the first is a yes, the second is a no), what would my expect script look like? Google is only giving me answers for scripts where I telnet or ssh. right now... (3 Replies)
Discussion started by: js741
3 Replies
Login or Register to Ask a Question