diff files from two file listings350 (9/22/2012 1:29:12 AM) comp.unix.shell I have two file listings of the files (file elements
of the same name but in different Clearcase branch),
what is the easiest way to run diff on each of the
file from the file listings? Perhaps Perl script?
... Why
Array passed as function parameters2430 (8/16/2012 1:25:57 PM) comp.lang.c Could anyone please explain the differences between
the following array passing? Thanks!
1) int get_data(char d[100]) {...}
2) int get_data(char *d) {...}
/WT
... Why
How widely used is Expect in text automationb?127 (2/8/2012 8:49:34 AM) comp.lang.tcl Is there any stats on how widely Expect is used in test automation? My impression is that Expect was popular 10 years ago, now many companies are replacing it with JCAT, Python, etc.. Is that really the overall... Why
Tcl 8.4 vs 8.5223 (2/5/2012 9:16:43 PM) comp.lang.tcl This is OK in 8.5: expect1.3> set a {1 2 3} 1 2 3 expect1.4> expr {[lindex $a 1] in {2 3 4}} 1 But not OK in 8.4: expect1.8> set a {1 2 3} 1 2 3 expect1.10> expr {[lindex $a 1] in {2 3 4}} syntax error in exp... Why
Expect on Windows 2003034 (12/31/2011 3:19:41 AM) comp.lang.tcl I installed ActiveState Tcl 8.5.11.0 and Teacup'ed Expect. While the Expect script runs, it doesn't seem to do anything. Has anyone managed to get Expect to work on Windows 2003? /WT ... Why
Expect vs pexpect139 (12/30/2011 8:04:22 AM) comp.lang.tcl Don Libes expressed his opinion in 2010, see http://stackoverflow.com/questions/3521954/what-can-expect-do-that-pexpect-can-not-do I'm now facing the same question at work. Could any of you please share your ... Why
Expect vs python test framework018 (11/4/2011 12:17:26 PM) comp.lang.tcl Does anyone have any experience with the python test framework? I need to look into one such framework at work to replace Expect for automated configuration. It appears to use an ssh module (paramiko) and a py... Why
Expect with Netconf147 (7/7/2011 1:26:26 PM) comp.lang.tcl Does anyone have any experience with using Expect with Netconf? We are looking at using Netconf to communicate with some of the newly designed systems. Would like to hear from anybody who has experience with Ne... Why
Expect script launcher?017 (6/18/2011 3:43:13 AM) comp.lang.tcl When there are a lot of expect scripts written, it would be nice to have a launcher that lists every test script in a folder and allows user to tick and run scripts of his or her choice. It'd also be nice to h... Why
Tcl for MobaXterm?120 (4/23/2011 3:27:11 AM) comp.lang.tcl Has anyone looked at creating a Tcl plugin for MobaXterm (an enhanced terminal with an X server and a set of Unix commands (GNU/Cygwin) packaged in a single portable exe file)? /WT ... Why
Static function prototype3537 (10/3/2008 5:08:41 PM) comp.lang.c I seem to remember that in ANSI C, all static functions should have their function prototypes listed at the beginning of the file for better consistency (or something like that). I googled and didn't find any g... ytlim1(236)
Memory alignment #86628 (10/3/2008 5:47:52 PM) comp.lang.c typedef struct some_struct { int i; short k, int m; char s[1]; } some_struct_t; Assuming 16 bit or 32-bit alignment, can I assume that s always gets 4 or 8 bytes of allocation due to padding in... ytlim1(236)
Expectk for FC9346 (2/10/2009 3:41:31 AM) comp.lang.tcl I've installed Tcl/Expect/Expectk packages on FC9. Expectk reported "Application initialization failed: version conflict for package 'Tcl': have 8.5.1, need exactly 8.5". Obviously it was due to a mismatch betw... ytlim1(236)
HTTPS access915 (2/21/2009 11:18:13 PM) comp.lang.tcl We need to perform hourly login on an https site in order to gain access to a secured part of the network. Can this be scripted with TCL? Here is the sequence: 1) start with an http URL 2) click on a button to... ytlim1(236)
Query about exec547 (4/16/2009 4:09:19 AM) comp.lang.tcl Here are two usage of exec: 1) % eval exec "wc -l $my_file" 39 /home/someone/some_file.txt 2) % eval exec "grep Error $my_file" child process exited abnormally Why does 1) works and 2) doesn't? /Why Tea ... ytlim1(236)
TK slow over ssh622 (5/21/2009 7:05:11 AM) comp.lang.tcl I wrote a small TK program to launch applications on a remote Solaris terminal via ssh -X connection. It takes a long time to run and the response to mouse is very slow. I compared it to other standard X app su... ytlim1(236)
Source Insight Equivalent - For Free1459 (6/11/2009 11:34:56 AM) comp.lang.c Hi, Is anyone aware of a free software that is equivalent to 'Source Insight' for Windows ? I am basically looking for a free tool that helps in browsing lot of source files (C Language) that are linked to ea... karthikbalaguru79(791)
Expect doesn't work on Windows 2003225 (8/21/2009 1:22:57 PM) comp.lang.tcl I installed ActiveState Tcl 8.4x on Windows 2003 server. But when I tried to run Expect, it didn't spawn successfully. I found others had posted the same problem on the Net, but there is no agreed solution. Is ... ytlim1(236)
Tcl 8.4 vs 8.5223 (2/5/2012 9:16:43 PM) comp.lang.tcl This is OK in 8.5: expect1.3> set a {1 2 3} 1 2 3 expect1.4> expr {[lindex $a 1] in {2 3 4}} 1 But not OK in 8.4: expect1.8> set a {1 2 3} 1 2 3 expect1.10> expr {[lindex $a 1] in {2 3 4}} syntax error in exp... ytlim1(236)