After Ftp'ing file to destination how to check the file if it is in correct ASCII and not corrupted


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers After Ftp'ing file to destination how to check the file if it is in correct ASCII and not corrupted
# 1  
Old 09-04-2015
Linux After Ftp'ing file to destination how to check the file if it is in correct ASCII and not corrupted

Hi Folks,

While transferring file from FTP software like Filezilla the files gets corrupted.
Is there any way I can check if the recently transferred file is in ASCII and not corrupted. I have tried using file -i filename command which does tell if the file character set is ASCII or binary but when that particular is used in someother shell script I come to know that it is corrupted.

Regards,
# 2  
Old 09-04-2015
Quote:
Originally Posted by Khan28
Hi Folks,

While transferring file from FTP software like Filezilla the files gets corrupted.
Is there any way I can check if the recently transferred file is in ASCII and not corrupted. I have tried using file -i filename command which does tell if the file character set is ASCII or binary but when that particular is used in someother shell script I come to know that it is corrupted.

Regards,
Why can't you use md5sum ?.
# 3  
Old 09-04-2015
Thanks for the reply.

I did tried
Code:
md5sum

on source and destination to check the file but it seems the values didnt match.
# 4  
Old 09-04-2015
Quote:
Originally Posted by Khan28
Thanks for the reply.

I did tried
Code:
md5sum

on source and destination to check the file but it seems the values didnt match.
So, that only means the file is not copied correctly. Isn't it your intention anyway. Findout if the file copied is the same or corrupt ?. Does it not solve your issue?.
# 5  
Old 09-04-2015
Quote:
So, that only means the file is not copied correctly. Isn't it your intention anyway. Findout if the file copied is the same or corrupt ?. Does it not solve your issue?.
Yes that does - but do I keep that as the bench mark to check if the file is corrupted or not ..
# 6  
Old 09-04-2015
Quote:
Originally Posted by Khan28
Yes that does - but do I keep that as the bench mark to check if the file is corrupted or not ..
Absolutely, md5sum or shasum is the right way to check the file integrity.
# 7  
Old 09-04-2015
You can also use
Code:
cksum <File>

command. In the output you will see checksum CRC. It must be same on both the machines.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Check if file is EBCDIC or ASCII format

So, i have this requirement where i need to check the file format, whether it's EBCDIC or ASCII, and based on format retrieve the information from that file: my file is: file1.txt-->this ebcdic file file2.txt-->ascii file i tried below code: file=file1.txt type="`file $file`" i get... (7 Replies)
Discussion started by: gnnsprapa
7 Replies

2. Shell Programming and Scripting

FTP'ing the zipped file

Hi, I need to have a shell script that FTP's a zipped file from a particular location. I have some path and inside that path i will have folders like x_timestamp and inside x_timestamp there may many folders based upon events like y_111,y_222,y_333.Inside each event there will be another... (3 Replies)
Discussion started by: weknowd
3 Replies

3. Solaris

UFS File System Periodically Corrupted - What to check?

The system is a SunFire V440 running SunOS 5.10 About once every 3-4 weeks, the system will reboot into single user mode on its own, and then I run svcs -xv, the filesystem service and dependent services will be disabled due to the metadisk file system being corrupted. The I've been doing... (2 Replies)
Discussion started by: the.gooch
2 Replies

4. Shell Programming and Scripting

How to check if the file has EBCDIC or ascii characters

Hi, is there a way to check if the initial few characters are ebcdic or ascii in a file? (1 Reply)
Discussion started by: ahmedwaseem2000
1 Replies

5. Shell Programming and Scripting

how to check the file data type(ascii or binary)

hi i am receiving a file from one system , i have to verify the format of the file data i.e whether the data is in acii format or binary format, please help thanks in advance satya (1 Reply)
Discussion started by: Satyak
1 Replies

6. Shell Programming and Scripting

size of a file that iam ftp ing

Hi, I want to compare the size of the files in my local machine before ftp ing it and the size of the file in the remote machine i.e after ftping . SO that the ftp is successful . (3 Replies)
Discussion started by: dineshr85
3 Replies

7. UNIX for Advanced & Expert Users

Dynamically ftp'ing a file

Hi, I am having unix script that passes argument value to script. The script finds the file and keeps it in a directory. I need to ftp this file to another server. Please guide me how to acieve this. I am able to connect to ftp server but i am not able to use the unix argument in the ftp... (0 Replies)
Discussion started by: pyaranoid
0 Replies

8. Shell Programming and Scripting

ftp - determine ascii or binary file

Hello, How to i determine via ftp commandline if files on ftp server is ascii or binary files. Like every other comon windows ftp program does it automatically. regards Thomas (5 Replies)
Discussion started by: congo
5 Replies

9. UNIX for Dummies Questions & Answers

how to check a file to contain only ascii charaters

HI I need to validate a file in UNIX to contain only ascii characters.This is a production issue.Can anyone help with the command? Thanks Subbarao (1 Reply)
Discussion started by: srichakra9
1 Replies

10. UNIX for Advanced & Expert Users

FTP'ed in ASCII a word file, how to recover

This is my worst nightmare in recent years!!! I spent two days writing a proposal due tomorrow, ftp'ed the Word doc to a Unix machine in ASCII mode (i forgot to turn BIN on). Then I was trying to help a colleague download it and I accidently download the ASCII file back to the same dir on my... (1 Reply)
Discussion started by: venkir
1 Replies
Login or Register to Ask a Question