How to ignore Netout Error.?

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support How to ignore Netout Error.?
# 1  
Old 10-29-2013
How to ignore Netout Error.?

Hi All ,

Am using unix KSH .
I would like to clarify two doubts.
  1. Whenever am transfering the zero size file am getting the warning message netout.
  2. files will be transferred to target server or not?



I have used the code as
Code:
if [ "${PWD}" = "${PWD}" ]
then
VAR="ftp.sh -c put ${FILE} ${FILE} ${IP_ADDR} ${USER}
${PASSWD} ${USER_DIR}_tmp ${LOG}"
fi
${VAR} 2> ${ERR}
if [ $? -ne 0 ]
then
echo  "Error running ftp.sh to send ${FILE} - see ${LOG}"
else
echo  "Successfully sent "
..
..
..

I would like to know
  1. what is the value in VAR variable after transfering zero size files.
  2. how to ignore this warning instead ${ERR} use /dev/null ?
  3. whenever am transferring zero size file am getting the error running ftp.sh to send ${FILE} - see ${LOG}" ( ex: if am transferring zero size files in code goes to else part i.e successfully sent )

Last edited by Don Cragun; 10-29-2013 at 05:27 AM.. Reason: Removed more spurious formatting
# 2  
Old 10-29-2013
I don't know why you are getting an error from netout when you run ftp.sh. If you would show us the actual error message you get and show us the contents of ftp.sh we might be able to help.
  • You haven't shown us how FILE, IP_ADDR, USER, PASSWD, USER_DIR, or LOG are set, so it is hard for us to guess at what:
    Code:
    "ftp.sh -c put ${FILE} ${FILE} ${IP_ADDR} ${USER}
    ${PASSWD} ${USER_DIR}_tmp ${LOG}"

    will expand to when it is assigned to VAR. But it doesn't seem likely that VAR's value will be changed by the command:
    Code:
    ${VAR} 2> ${ERR}

  • What do you mean by ignore the warning? Do you want to hide a diagnostic message? Do you want to ignore the fact that an error occurred and have your script pretend that everything is OK? Have you considered doing something to make your script work in such a way that it doesn't generate a diagnostic message?
  • Make ftp.sh return 0 in cases where it completes successfully instead of printing a diagnostic message and returning a non-zero exit status.
# 3  
Old 10-29-2013
If you using FTP on a MS-based system,it is possible a NETOUT error may occur when transferring savefile.
possible reason
1. savefile object on pc could be corrupted
2. Invalid extension
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to ignore error in command in bash script?

Hello, i have bash script where im cycling some command for different lines in external file. example: while read domain;do nslookupout=$(nslookup -type=ns $domain) || true another commands done < filenamewithdomains i added: || true after the command in belief it will just skip... (6 Replies)
Discussion started by: postcd
6 Replies

2. UNIX for Advanced & Expert Users

Netout: write returned 0?

Hi Am Using unix Aix When i ftp the zero size file getting the netout: write returned 0? (1 Reply)
Discussion started by: Venkatesh1
1 Replies

3. Shell Programming and Scripting

How to ignore first or last parameter

Can someone help me of doing something like this send.sh #!/bin/bash for last; do true; done echo $* | gammu sendsms TEXT $last every thing is good except that when i launch the script like this ./send.sh This is the message i want to send +63922XXXXXXX it turned out the message of... (2 Replies)
Discussion started by: arturo322
2 Replies

4. UNIX for Dummies Questions & Answers

cat : ignore I/O error

Hello, I have to backup some cds but I get an I/O error message when I hit a bad sector (using the command cat) and my question is : what can I do to force the system to ignore theses errors (or all kind of errors) and let the process keep going? (sorry for any eventuals language errors, I am... (6 Replies)
Discussion started by: Actraiser47
6 Replies

5. Shell Programming and Scripting

ls ignore pattern

Hi, I have a FTP script that check for ".done" files in the remote path and the "get" the corresponding data files. Here's how it does..... First it list all the *.done file as below: ls *.done And then it picks one file and get the corresponding data file. After that it... (3 Replies)
Discussion started by: dips_ag
3 Replies

6. Shell Programming and Scripting

netout: write returned 0?

Hi , When i try to ftp a zero byte file across through a shell script It gives me the mesaage netout: write returned 0? Is there any way i can supress this message as it does not affect the execution of the script Thanks (1 Reply)
Discussion started by: lifzgud
1 Replies

7. Shell Programming and Scripting

how to ignore case

Hi All, The means I use to ignore case, as an example is the following snippet: It should accept any oof the following y|Y|YES|Yes|n|N|NO|No echo "Enter Y/N to continue: " read choice; (3 Replies)
Discussion started by: raghur77
3 Replies

8. Shell Programming and Scripting

Ignore error and get ls file count

I am trying to figure out how to run the below variable assignment in a shell script so that it will snuff the "no such file or directory" and just pass the count value. That way I can do a valid compare in the next step. num=`ls /appsrv/tmp/PrjRefData_20090428-*_in.xml | wc -l` ls:... (3 Replies)
Discussion started by: lynchmob
3 Replies

9. UNIX for Dummies Questions & Answers

please ignore this....

Most of the people think that they can not use Unix as desktop. By this poll we gone tell them that we not just use Unix as desktop but also love different display managers like GNOME, KDE etc..... (1 Reply)
Discussion started by: ynilesh
1 Replies

10. Shell Programming and Scripting

How to ignore '.' files

I'm running Fedora Core 6 as an FTP server on a powerMac G4... I'm trying to create a script to remove files older than 3 days... I'm able to find all data older than 3 days but it finds hidden files such as /home/ftp/goossens/.canna /home/ftp/goossens/.kde... (4 Replies)
Discussion started by: James_UK
4 Replies
Login or Register to Ask a Question