The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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 05-30-2007
ennstate ennstate is offline
Registered User
  
 

Join Date: Mar 2007
Location: Chennai
Posts: 222
Hi,
You can provide the subject within double quote ".

Example:

cat arg.ksh
Code:
#!/bin/ksh
echo $1 $2 $3 $4 $5
Code:
./arg.ksh mailx "Test Email" a@b.com d@e.com File
Code:
Output :
  mailx Test Email a@b.com d@e.com File
Does this answers your query.

Thanks
Nagarajan G