![]() |
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 |
| Check space utilization in recursive mode | sureshg_sampat | Shell Programming and Scripting | 1 | 06-02-2008 01:56 PM |
| Can't Editing File in Single mode (using vi) | heru_90 | UNIX for Advanced & Expert Users | 14 | 06-19-2007 08:42 AM |
| Appending file in the read mode. | videsh77 | Shell Programming and Scripting | 4 | 02-26-2007 03:02 AM |
| Transfering file through FTP through Binary Mode | ronald_brayan | IP Networking | 4 | 10-28-2006 06:59 AM |
| Script to check for a file, check for 2hrs. then quit | mmarsh | UNIX for Dummies Questions & Answers | 2 | 09-16-2005 02:46 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
How to check a file whether it is in binay mode or not while doing ftp??
Hi,
One bank statement file should be loaded into some tables by using a concurrent program. But if the file is transfered in binary mode i am getting some special characters in the file which is unexpected. so, for that while moving that file data into tables i want to write a script that checks whether the file is in binay mode or in Ascii mode?? If it is transfered in binary mode, then i want to display one error message that the file should not be transferred in binary mode. I think my explanation is clear. can any one let me know what is the command to check whether the file is in binary mode?? Thanks in advance. Sateesh. |
|
||||
|
Just a comment,
I think it's a bad habit of most ftp-implementations to default to converting data between systems, ie ASCII transfer. I would rather always transfer the data in binary, exactly, or at least as closely as possible, as it is represented on "the other" system, and make the conversion myself. I know what it looks like on one system and and I know how I want it on another. It is better to control it Yourself than letting someone else (the ftp-client) to convert it the way it thinks it should be, because that may differ between clients and methods. I think You will find that binary mode transfers don't add or change anything in Your data. It is ASCII-mode that usually converts line breaks, character sets between platforms, etc. Then again, ASCII may be the way You want it or expect it... file is a command to check the type of file, it may not always be completely accurate. The FTP-definition of binary is not shared by all... and as jim pointed out, running it through dos2unix, shouldn't hurt, as long as it's "text" data, it could actually wreak havoc in some data files, such as xml CDATA, or sql with "binary" BLOBS. /Lakris |
| Sponsored Links | ||
|
|