Junk character appearing after downloading the file from windows server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Junk character appearing after downloading the file from windows server
# 1  
Old 09-06-2014
Junk character appearing after downloading the file from windows server

Hello,

Im downloading the file from windows server through FTP, the downloaded file is containing some junk character at very start of the file as below and causing my whole script is to fail,
how to download without junk or how to remove these before processing it?
Code:
▒▒"nmdbfnmdsfsdf"
       nmdsbnmfmdsf
        nmsbmfdsbnmfbds
nmbdsnmfbsnmdbfnmds
        sdmnbfnmbdsf

...
...

Im using the below code to download the file

Code:
get_file ()
{
ftp -vn 10.430.21.10 21 <<EOF
user "138" "abcd@9197"
pass
bi
cd /PVR
get testfile
bye
EOF
}


Last edited by Scrutinizer; 09-06-2014 at 07:31 AM..
# 2  
Old 09-06-2014
You need to use as instead of bi (ASCII , not BINARY transfer)

Also, if you still get those characters, they are probably BOM characters inserted by Windows.
See if this thread helps ..


--
BTW probably not, but if those are genuine passwords then you need to anonymize them before posting here..

Last edited by Scrutinizer; 09-06-2014 at 07:40 AM..
# 3  
Old 09-06-2014
Tried, the as option but no changes,still the these character causing these issue in my scripts.

I dont know what is this....
Code:
▒▒

actually my awk is hunting one string from the first line, but these junk characters is not allowing awk to proceed...
# 4  
Old 09-06-2014
What is your LANG setting?? What LANG setting does the remote computer use? awk is barfing on locale (LANG encoding)
-- because it thinks that leading character means something.

You can see the hex for the problem character: (Linux example)
Code:
od -x -N 10 filename

-- The very first hex entry.

If the character were a BOM for 16bit encoding and it was wrong the whole file would be garbage. So, I think Scrutinizer is correct.
# 5  
Old 09-06-2014
Looks like two times the UTF-8 three byte representation of 0x2592 - a faint memory alludes that these could be MAC control chars.
Why don't you delete them awk 'NR==1 {$0=substr($0,7)}1' file?
# 6  
Old 09-06-2014
Dont know about the remote server as i do not have full access but i have my loacal AIX box lang setting as below

Code:
od -x -N 10 filename
0000000  fffe 2200 4500 7600 6500
0000012

As suggested by rudie tried to remove these bytes as below.

Code:
tail -n +4 file

It got removed successfully but seems that whole file is having this garbage value but not visible in the new truncated file, really in a puzzling situation now , that was the final touch everything was written on by creating dummy file/text , now once i acted on the original downloaded file it very much disappointed me.


This is the actual code which i was trying to search the pattern , but giving me the null value, on my dummy text it was really working fine.

Code:
awk '/'severe.job'/ {print;for(i=1; i<=4; i++) {getline; print}}' filename

# 7  
Old 09-06-2014
Hey - this is a totally different story! That snippet is from a utf-16 coded file. Use iconv -futf-16 -tutf-8 file.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Emergency UNIX and Linux Support

Help in viewing the junk character

Hello All, I have issues in unix file when I loaded that to database and do select * from table where description like '%'+char(13)+'%' on it I am able to get records. I tried to view the file in unix it is all having blank character which I think is all non ascii which I am not able view.... (11 Replies)
Discussion started by: arunkumar_mca
11 Replies

2. Shell Programming and Scripting

How to see junk character in file in.?

Hi I want to know how to see junk character in a file. i am not able to see junk character using vi or cat command. below is the junk char . which i see in host file 10.178.14.67▒▒▒ ac01sp02-vip actually it should be like this 10.178.14.67 ac01sp02-vip i am using secure CRT... (11 Replies)
Discussion started by: scriptor
11 Replies

3. UNIX for Dummies Questions & Answers

PS1 (Prompt character) appearing in cat output

RedHat Linux 5.8/Korn Shell I have text file name /etc/oracle/config.loc. It has the following text #Device/file getting replaced by device +OCR ocrconfig_loc=+DATA ocrmirrorconfig_loc=+OCRBut , when I open this file using cat , the PS1 character (for prompt) appears as the last character... (8 Replies)
Discussion started by: omega3
8 Replies

4. Shell Programming and Scripting

removing of junk character

Dear ALL, How to remove junk charecter ^M from unix file i am using sun solaris unix. I already tried few commands :%s/^M//g :%s/r//g but it didnt helped me. Any help appriciated. Thanks Ripudaman Please view this code tag video for how to use code tags when posting code... (5 Replies)
Discussion started by: ripudaman.singh
5 Replies

5. Shell Programming and Scripting

Check Junk character in sql file

Hello, I have two .sql files which I transferred from Windows to Unix (Linux Enterprise Linux Server release 5.3).I want to ensure that these two files have no junk characters in them.How do I do it in the simplest possible way? Many thanks DJ (1 Reply)
Discussion started by: Digjoy83
1 Replies

6. UNIX for Dummies Questions & Answers

[Solved] Count amount of times of appearing of character before a word?

Hello Is there a way to calculate how many times a particular symbol appeared in a string before a particular word. Desktop/Myfiles/pet/dog/puppy So, I want to count number of occurence of"/" in this directory before the word dog lets say. Cheers, Bob (3 Replies)
Discussion started by: FUTURE_EINSTEIN
3 Replies

7. Windows & DOS: Issues & Discussions

Downloading a file from Website to a Windows Folder

Hi, Is it possible to download a file using Wget or some other command from a Windows machine? Say I want to download something from https server to C:\ABC\abc.xls Any ideas, Thanks. (4 Replies)
Discussion started by: dohko
4 Replies

8. Shell Programming and Scripting

Remove all JUNK character from file.

Hi Team, I have a file having size greater than 1 GB. What i want to do is to check if it contains any JUNK character (ie any special charater thats not on the key board stroke). This file has 532 column & seperated with ^~^. I have found some solution from the file, but it is for a... (4 Replies)
Discussion started by: Amit.Sagpariya
4 Replies

9. Shell Programming and Scripting

Junk Character in file

Hi set filename "./GopiRun.sh" if } err] { writeLog "error in exec " writeLog $a } else { writeLog $a } The above code will execute a file GopiRun.sh,and will log the output of the exec to a file. The problem is the file has lot of junk character in it,how to avoid it. The... (2 Replies)
Discussion started by: nathgopi214
2 Replies

10. UNIX for Advanced & Expert Users

Get rid of junk character in a file

I have a file with one of the following lines, when opened with vi 33560010686GPT£120600GBPGBP10082007DS In the above line, I want to get rid of the junk character before the £ (pound sysmbol). When I tried copying £ from windows and copy in unix vi, it prints as £ and I tried pattern replace... (2 Replies)
Discussion started by: nskworld
2 Replies
Login or Register to Ask a Question