![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Development Releases: Linux Mint 4.0 Beta "Fluxbox", 4.0 Alpha "Debian" | iBot | UNIX and Linux RSS News | 0 | 01-04-2008 03:00 PM |
| Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`" | Lokesha | UNIX for Dummies Questions & Answers | 4 | 12-20-2007 01:52 AM |
| how could i make a program mixed with many "|", "<" and ">" | strugglingman | High Level Programming | 2 | 04-29-2006 09:11 AM |
| No utpmx entry: you must exec "login" from lowest level "shell" | peterpan | UNIX for Dummies Questions & Answers | 0 | 01-18-2006 04:15 AM |
| how to request a "read" or "delivered" receipt for mails | plelie2 | Shell Programming and Scripting | 1 | 08-06-2002 04:26 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Confirmation rather than "sleep"
I have a simple telnet script that logs into a device and issues a number of commands with "sleep" between each command. This works great, although it would be nice to execute each command based on a response rather than an assummed sleep time?
The reponse received is "COMPLD" which could trigger the next command. Here is a similar example script with "sleep" in between each command. Thanks. -------------------------------------------- #!/bin/sh host=10.1.2.2 login=admin password=admin command1="show software" command2="show card software" command3="conf t1 state up" { echo "$login""\r" sleep 2 echo "$password""\r" sleep 2 echo "$command1""\r" sleep 2 echo "$command2""\r" sleep 2 echo "$command3""\r" sleep 2 echo "Y""\r" sleep 3 echo "exit""\r" }| telnet $host |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|