![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| /var/adm/messages error | sunsri01 | SUN Solaris | 2 | 11-09-2007 11:33 AM |
| error messages | murad.jaber | SUN Solaris | 0 | 10-11-2007 02:02 AM |
| error messages in /var/adm/messages | nitinp82 | UNIX for Advanced & Expert Users | 1 | 04-17-2007 10:17 AM |
| Error Messages | akrathi | UNIX for Dummies Questions & Answers | 1 | 10-26-2005 12:01 PM |
| error in /var/adm/messages | julie | UNIX for Dummies Questions & Answers | 2 | 08-08-2001 04:10 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
ftp error messages!
Please see the below script-
ftp $FTPREMOTESERVER prompt mput $DATAPATH/*.dat quit | ftp -in > FTPRETURNMSGLOGFILE # iam trying write the eroor messages inside a file when the ftp quits. Based on the above script te ftp is properly working but writing into the file wen ftp quits is nor working.Any suggestions |
|
||||
|
Hi This is what I do
hope it helps # # launch ftp program and write to FTP_LOG FILE # FTP_LOG= ${USR_HOME}"FTP_LOG".lis $FTP_PROG $USR@$IPN -pw=$PSS -ce -unat=y -cmd="$CMDS;" >>${FTP_LOG} RTNCD=$? # #check the return code for error # look for error message in the log and email admin # if [[ !0 = $RTNCD ]] then echo "FTP ERROR: "$RTNCD >>$O_ERR awk -F '[:.]' '$1 == "Warning" { print $2 }' ${USR_HOME}${FTP_LOG} >>$O_ERR awk -F '[:.]' '$1 == "Error" { print $2 }' ${USR_HOME}${FTP_LOG} >>$O_ERR send_mail fi |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|