Sponsored Content
Top Forums UNIX for Advanced & Expert Users Check EOF char in Unix. OR To check file has been received completely from a remote system Post 302439497 by achenle on Thursday 22nd of July 2010 07:48:50 PM
Old 07-22-2010
Quote:
Originally Posted by methyl
Maybe see if they can transfer the file under a temporary name, then they rename the file to the correct name after a complete transfer.
That's one answer that works.

Basically, there's NO WAY you can tell on the receiving machine if the entire file has been transferred successfully.

YOU DO NOT HAVE THAT INFORMATION!!!

(Sorry about the shouting, but too many people think they can "solve" this problem somehow. They CAN'T. It's like solving "a + b = 2" when you don't know either a or b - it's impossible.)

The ONLY way to know that the complete file has been successfully transferred is for the sender to send some signal that the sending is complete.

Renaming the file from a temp name is one very good way to send that signal. Just make sure the rename doesn't move the file from one file system to another.
This User Gave Thanks to achenle For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to check if the file DOES NOT have EOF

Hi, Please help me on this. how to check if the file DOES NOT have EOF ?? I am using ksh for this. (3 Replies)
Discussion started by: BasavarajaKC
3 Replies

2. Shell Programming and Scripting

check if file exists on remote system ?

Hi there, I am designing a software rollout script and need to check if a particular file exists on a remote system something along the lines of if ; then blah blah The above doesnt work but you get the general idea....is there a way I can do this on a single line ?? any help would... (2 Replies)
Discussion started by: hcclnoodles
2 Replies

3. UNIX for Advanced & Expert Users

Using FTP to check whether file is completely FTP... plz find the description below

Hi, We have some clients who will place huge files in to one of the remote server. And the shell script written in our local server to retrieve client files (using FTP) placed on one of the remote server of ours by clients. My question Is there any FTP command/script to check from my local... (1 Reply)
Discussion started by: nmsrao
1 Replies

4. Shell Programming and Scripting

check processes on remote system?

I have a script that counts the number of oracle processes running on the system: if then and it continues based on whether or not it finds running processes. Now we would like to move oracle to a separate server, but keep the application (and this script) on the old machine. Is there a... (9 Replies)
Discussion started by: Wotan31
9 Replies

5. Shell Programming and Scripting

Check if file is loaded completely and then process the file

I need to write a script which checks for files loaded into a folder (files are loaded by ftp from other server) and process the file only if the file is loaded completely. if the file is not complete in the current run, it must be processed in the next run. Any suggestions would be welcome... (2 Replies)
Discussion started by: kalyan381
2 Replies

6. Shell Programming and Scripting

To check wheather a file is downloaded completely or not

I will have two files (which were in .txt format) ftp'ed to a specified directory, from where my ksh picks up each file at a time and starts processing it. So i need to write a script which as soon as find a file should check wheather it is download completely or not. If it is still downloading... (2 Replies)
Discussion started by: vpv0002
2 Replies

7. UNIX for Advanced & Expert Users

quick remote health check SAP systems from UNIX commandline

Hi folks Howto do quick remote health check for SAP systems on UNIX commandline? To see if a SAP system is down or in maintenace mode (no login). I am searching something like "tnsping"/Oracle for SAP systems. (2 Replies)
Discussion started by: slashdotweenie
2 Replies

8. Shell Programming and Scripting

csh Check if file exists on remote system

I've seen this question posed a few times with shell scripting, but have not found anything with csh. I am trying to download multiple txt files from a source using wget. These are archived tornado warning files; however, the files only exist if there were tornado warnings issued that day. I'm... (3 Replies)
Discussion started by: meteorologistks
3 Replies

9. AIX

Error received when I was trying to check state of boot record

Hello, This is a test/lab LPAR. Recently installed and updated the SP/TL. everything seems to be working fine. (ran all post install checks) I checked the state of boot record, received the following error/failed message. Can you please explain what does this mean ? />ipl_varyon -i ... (1 Reply)
Discussion started by: dio34
1 Replies

10. Shell Programming and Scripting

How to check email with attachment received or not from UNIX shell script?

Hello Guys, Here is the requirement!! I want to check the mail with attachment received or not through unix scripting. And send an notification email when mail with attachment already received. Any thoughts on this is much appreciated!! Regards, Harry (0 Replies)
Discussion started by: dharry2017
0 Replies
CON(1)							      General Commands Manual							    CON(1)

NAME
con, telnet, cu, rx, xms, xmr - remote login, execution, and XMODEM file transfer SYNOPSIS
con [ -dCrvs ] [ -l [ remuser ] ] [ -c cmd ] [net!]machine telnet [ -dCrn ] [net!]machine cu number rx [ -n ] [net!]machine [ command-word ... ] xms file xmr file DESCRIPTION
Con connects to the computer whose network address is net!machine and logs in if possible. With no options, the account name used on the remote system is the same as that on the local system. Standard input and output go to the local machine. Options are: -l with an argument causes remuser to be used as the account name on the remote system. Without an argument this option disables auto- matic login and a normal login session ensues. -C forces cooked mode, that is, local echo. -c runs cmd as if it had been typed as a command from the escape mode. This is used by cu. -v (verbose mode) causes information about connection attempts to be output to standard error. This can be useful when trying to debug network connectivity. -d causes debugging information to be output to standard error. -r suppresses printing of any carriage return followed by a new line. This is useful since carriage return is a printable character in Plan 9. -s strips received characters to 7 bits to forestall misinterpretation of ASCII with parity as UTF. The control- character is a local escape. It prompts with the local machine name and >>>. Legitimate responses to the prompt are i Send a quit [sic] signal to the remote machine. q Exit. b Send a break. . Return from the escape. !cmd Run the command with the network connection as its standard input and standard output. Standard error will go to the screen. This is useful for transmitting and receiving files over the connections using programs such as xms. Telnet is similar to con, but uses the telnet protocol to communicate with the remote machine. If standard input is a file or a pipe, the -n option causes telnet not to hang up the connection when it receives EOF on its standard input; instead it waits for the remote end to hang up. It shares con's -C, -d, and -r options. Cu is a shell script that uses telco(4) and con to connect to a machine via a modem. If the machine is equipped with a local modem, it is used. Otherwise, the call is placed through Datakit. Rx executes one shell command on the remote machine as if logged in there, but with local standard input and output. A rudimentary shell environment is provided. If the target is a Plan 9 machine, $service there will be rx. Network addresses for both con and rx have the form network!machine. Supported networks are those listed in /net. The commands xms and xmr respectively send and receive a single file using the XMODEM protocol. They use standard input and standard out- put for communication and are intended for use with con. EXAMPLES
rx kremvax cat file1 >file2 Copy remote file1 to local file2. rx kremvax cat file1 '>file2' Copy remote file1 to remote file2. eqn paper | rx kremvax troff -ms | rx deepthought lp Parallel processing: do each stage of a pipeline on a different machine. SOURCE
/sys/src/cmd/con for con, xms, and xmr. /sys/src/cmd/ip for telnet. /rc/bin/cu BUGS
Under rx, a program that should behave specially towards terminals may not: e.g., remote shells will not prompt. Also under rx, the remote standard error and standard output are combined and go inseparably to the local standard output. CON(1)
All times are GMT -4. The time now is 06:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy