Search Results

Search: Posts Made By: AlanBLDN
5,594
Posted By AlanBLDN
Better off with: expect { -re...
Better off with:

expect {
-re "(.*)hi" { perform action }
-re "(.*)hello" { perform action }
-re "(.*)bye" { perform action }
}

With a -re it will match to...
1,874
Posted By AlanBLDN
Hi, Take a look at Tcl/Expect it will allow...
Hi,

Take a look at Tcl/Expect it will allow you to automate pretty much any text based / command line apps.

e.g. spawn telnet localhost
expect "ogin:"
send "<login name>\r"
...
3,297
Posted By AlanBLDN
I have put your values into a test file, a.txt ...
I have put your values into a test file, a.txt

cat a.txt

s6 98
s6 91
s6 56
s5 32
s5 10
s5 4

The following gives you what you want:

sort a.txt | awk 'BEGIN {x="";y=0;cnt=0;}{if (x...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 08:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy