By Yuvaraj737
cd /inv1/io13000/mbmport/mbmerr
ERRFL=/inv1/io13000/srcport/$$_errorlist.txt
X=`ls *.c?? |wc -l`
if [ $X -ge 1 ]
then
echo “Review library path: /inv1/io13000/mbmport/mbmerr/ “|tee $ERRFL
echo ” “|tee -a $ERRFL
cd /inv1/io13000/mbmport/mbmerr
echo “The following modules did not compile”|tee -a $ERRFL
echo “————————————-“|tee -a $ERRFL
ls -1 *.c??|awk -F”.” ‘{print $1}’|uniq|tee -a $ERRFL
cd /inv1/io13000/srcport
uuencode $ERRFL $ERRFL|/usr/bin/mailx -i -s “Compile Errors” a.b@sun.com -c “c.d@sun.com” <$ERRFL
exit -9
else
echo “There are no errors to report!!! “|tee $ERRFL
echo “————————————-“|tee -a $ERRFL
uuencode $ERRFL $ERRFL|/usr/bin/mailx -s “No Compile Errors” a.b@sun.com -c “c.d@sun.com” <$ERRFL
fi
When the mailx program runs, I see the below warning message(shown Red) displayed. What is the reason and how to stop? Can anybody advice?
SIMS-IODEV2:ndvradmn$./compile.yk
*.c??: No such file or directory
There are no errors to report!!!
————————————-
WARNING: RunAsUser for MSP ignored, check group ids (egid=120, want=25)