The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 05-15-2008
ZINGARO ZINGARO is offline
Registered User
  
 

Join Date: Jul 2006
Posts: 36
Output function into file

I have this shell:

function AAAA {

echo $* > Log1

}

# main

AAA "TEST" > Log2

.....

I not see the same output in the 2 files ; only Log1 result with the strings $*
Log2 is without strings ....

Why?