Changeset 92


Ignore:
Timestamp:
01/21/2009 05:01:41 PM (15 years ago)
Author:
marcus
Message:

r74 | svn | 2009-01-20 15:46:47 +0100 (Di, 20 Jan 2009) | 1 line

changed mailx qualifiers due to change in syntax

File:
1 edited

Legend:

Unmodified
Added
Removed
  • SH_SHM/trunk/util/shm_exec_read_adrm_mail.csh

    r16 r92  
    5050 
    5151        if  ("$mailhost" == "")  then 
    52                 set res=`mailx -f $mailfile -H | grep -i autodrm | tail -1` 
     52                set res=`mailx -H -f $mailfile | grep -i autodrm | tail -1` 
    5353        else 
    54                 set res=`ssh $mailhost mailx -f $mailfile -H | grep -i autodrm | tail -1` 
     54                set res=`ssh $mailhost mailx -H -f $mailfile | grep -i autodrm | tail -1` 
    5555        endif 
    5656        if  ($#res < 3)  continue 
     
    6262        echo "q"     >>$tmpfile 
    6363        if  ("$mailhost" == "")  then 
    64                 mailx -f $mailfile -N <$tmpfile >$outfile 
     64                mailx -N -f $mailfile <$tmpfile >$outfile 
    6565        else 
    66                 ssh $mailhost mailx -f $mailfile -N <$tmpfile >$outfile 
     66                ssh $mailhost mailx -N -f $mailfile <$tmpfile >$outfile 
    6767        endif 
    6868        \rm $tmpfile 
Note: See TracChangeset for help on using the changeset viewer.