file transfer from windows to unix using ftp


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting file transfer from windows to unix using ftp
# 1  
Old 05-27-2009
Question file transfer from windows to unix using ftp

Hi all,

I have a file in windows, example
a.txt
****
aaa
bbb
ccc
<empty line>

when i transfer this file to unix using ftp, and viewed the file
# vi a.txt
aaa
bbb
ccc
#
I dont get the empty line which i specified in that file in windows.
Please help me, which in unix environment, empty line feed is not supporting.

Regards
NG
# 2  
Old 05-27-2009
Try to transfer the file in ascii mode
# 3  
Old 05-27-2009
Did you transfer the file in ASCII or binary mode? Are you sure the final empty line is missing? You can check this by opening the file in vi and entering
Code:
:set list

in command mode. If there's a single '$' showing in the last line it's empty.
# 4  
Old 05-27-2009
Which transfer mode do you use? Try to switch it!!!

Regards,
Albert
# 5  
Old 05-27-2009
I tried using ASCII mode. But even though I'm not able to get that blank line

If we give two blank lines at the end of the file in windows, then we can able to get one blank line in unix.
It is like
For 2 Blank lines in windows , we get 1 blank line in unix
For 3 Blank lines in windows , we get 2 blank line in unix
For 4 Blank lines in windows , we get 3 blank line in unix........

Last edited by Nandagopal; 05-27-2009 at 07:22 AM..
# 6  
Old 05-27-2009
Again, how do you check this? Some UNIX editors (including vi/vim) automatically append a newline to the last line, so this might be the reason why it's not showing. Example:
Code:
$ printf "Test" > test_noeol.txt
$ printf "Test\n" > test_eol.txt
$ printf "Test\n\n" > test_dbleol.txt
$ file test_*.txt
test_noeol.txt:  ASCII text, with no line terminators
test_eol.txt:    ASCII text
test_dbleol.txt: ASCII text
$ cat test_noeol.txt
Test$ cat test_eol.txt
Test
$ cat test_dbleol.txt
Test

$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Cygwin script to transfer file from windows to UNIX

Hi, Objective is to transfer files from windows server to Unix server using cygwin. I have installed cygwin, and I manually execute commands and transfer files from windows to unix using sftp. These are steps I execute 1) Run cmd 2) Run cygwin 3) At prompt type sftp user1@uniserver 4) lcd... (2 Replies)
Discussion started by: wahi80
2 Replies

2. Shell Programming and Scripting

How to transfer file from Local PC to UNIX Directory without FTP?

Dear All, i am trying to get the file from windows location to unix location without using FTP and neither thru entering the user id and password. I have one unix form which is running on web application and user is entering the location and file name there now i know the file name and path. So i... (8 Replies)
Discussion started by: ripudaman.singh
8 Replies

3. IP Networking

How to transfer files from UNIX server to windows machine or vice versa using ftp or sftp commands?

hi, i want to write a shell script code which transfers files from a directory in unix server to a directory in a windows machine.. can any1 give me a sample code which uses ftp or sftp command.. thanks very much, (3 Replies)
Discussion started by: Little
3 Replies

4. UNIX and Linux Applications

UNIX to windows XP file transfer

I am using Unix workstation to transfer a .txt file to my other Windows XP desktop using network. can u suggest some idea how to do. i am new to unix . (4 Replies)
Discussion started by: senthil17
4 Replies

5. UNIX for Dummies Questions & Answers

transfer file from unix to windows on same PC

Hi, Do any one know the shell script code to transfer a file from unix to windows on same PC (4 Replies)
Discussion started by: monika
4 Replies

6. Windows & DOS: Issues & Discussions

File transfer between unix and windows viceversa

Hi, My requirement is to connect to a windows system from unix fileserver and get some files then process them using shell scripting and database related stuff.it will generate some output.i have to copy again some files back to windows system at some directory. How do i connect to windows from... (3 Replies)
Discussion started by: mohanpadamata
3 Replies

7. HP-UX

File transfer between unix and windows server

hi all, I have two server(Unix tru64 and windows 2003 server). these server's live running now. The win2003server doesn't have ftp server. Also Unix server doesn't have samba. if both server's have ftp server that no problem. How to transfer file from windows server to unix by every... (2 Replies)
Discussion started by: Tlg13team
2 Replies

8. IP Networking

How to Transfer a whole Directory from unix to windows using FTP?

Hi I can transfer a single file and multiple file from unix to widows using get and mget command.But i dont know How to transfer a whole directory from unix to windows using command. pls help me Ramkumar (1 Reply)
Discussion started by: ramkumarm83
1 Replies

9. UNIX for Dummies Questions & Answers

Transfer files from Unix server to Windows using FTP

Dear Friend, I don't know much about unix.I am an VB6.0 Programmer.I need to move an text files as aaa.txt from unix server to windows "D: " driver using the FTP protocol.Is it possible to do this with help of unix shell script.If possible please give some sample codes. Please answer as early... (1 Reply)
Discussion started by: gjsaravanan
1 Replies

10. Shell Programming and Scripting

transfer of files via ftp from windows to unix

I am currently looking to write a script to transfer files from a windows NT server to a unix server any ideas of how to go about this? (1 Reply)
Discussion started by: chambala5
1 Replies
Login or Register to Ask a Question