The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 11-20-2006
zazzybob's Avatar
zazzybob zazzybob is offline Forum Advisor  
Registered Geek
  
 

Join Date: Dec 2003
Location: Melbourne, Australia
Posts: 2,100
OK, first thing first, you're also trying (in a syntactically incorrect way) to append STDOUT to the log too (which would never actually assign anything to the variable.... if the whole thing was enclosed in backticks... ).

I believe that you want this:


Code:
a=`expr ${i} + ${j} 2>>${log_file}`

Cheers
ZB