views:

98

answers:

1

Hi,

I know it is common to use catch when executing commands that may return non-zero... but how can I get the output in that case?

To be specific, I wish to do something like "catch {exec diff fileA fileB} ret". The files are different and ret value is 1. What I actaully need is the output of diff, the detailed differences. But I believe the "catch {exec ...} err" practice does not provide it, right?

Can someone please suggest on this task? Is there tcl-builtin commands to do file diff? (I think it is possible to redirect the output to a file and then read the file... are there any other alternatives?)

Thanks! XM

+2  A: 

From a recent project of mine:

set status [catch {exec diff $file1 $file2} result]
if {$status == 0} {
   puts "$file1 and $file2 are identical"
} elseif {$status == 1} {
   puts "** $file1 and $file2 are different **"
   puts "***************************************************************************"
   puts ""
   puts $result
   puts ""
   puts "***************************************************************************"
} else {
   puts stderr "** diff exited with status $status **"
   puts stderr "***********************************************************************"
   puts stderr $result
   puts stderr "***********************************************************************"
}

Bottom line, when the files are different, the status is 1 and $result holds the diff output. At the end of the diff output I do get the "child process exited abnormally". In my case I have not remove it, but it should be easy enough to do.

Andrew Stein
Thank you Andrew... I did almost the same as yours but I was not careful to check $result; it has what I needed :) By the way, your code will get something like 'result: couldn't execute "diff -rwsq fileA.tcl fileB.tcl', so I used command [catch {exec sh -c $cmd} result] and 'couldn't execute' is gone. Thanks!
X.M.