Base32 decoding binary file to ascii


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Base32 decoding binary file to ascii
# 15  
Old 09-23-2015
This doesn't match neither your specification in post#12 (spaces!) nor any of your "binary" samples. What does "fixed length ascii converted" mean? Could you attach some original records without any modification?

---------- Post updated at 17:21 ---------- Previous update was at 17:15 ----------

Would this interpretation ignoring any spaces (c.f. rightmost column) ring a bell?
Code:
No      Field Name      Type            Offset  Length  Bytes   Binary Type     Value
C1      Record Type     Number(3)       1       3       1       Unsigned Char   016
C2      Call Date       Date            4       8       4       Long            20150722
C3      Operator        Number (4)      12      4       2       Unsigned short  0040
C4      Segment Number  Number(3)       16      3       1       Unsigned Char   001
                                                                                08000400
                                                                                .
                                                                                .
                                                                                .

# 16  
Old 09-23-2015
Quote:
Originally Posted by krk
As per my source , this a binary file encoded with base32.
I don't think you know what base32 is. I think this file is pure binary with no encoding at all.

Quote:
Coud you please let me how should i decode the file. I mean what should be my first step.
Handling pure binary values is awkward in most scripting languages. Do you have a C compiler available?

Please attach some of your raw unmodified input data. Your examples don't seem to agree with each other.
# 17  
Old 09-23-2015
I don't think it's binary either. Talking of post#14, it's a fixed field fixed record ASCII file (not text!). No idea what/why the spaces are in there.
# 18  
Old 09-24-2015
i'll brief the requirements again.

I have a binary file (base32 encoded) and a ASCII version of the same binary file.But i don't have a conversion code/logic/algorithm.I do have file specification.
I need to figure out a way to convert the binary file to asciii fixed length file so that i can load it contents into oracle table.

I've already posted the content of the binary file , ascii file & file spec in my previous post.

You guys give a unix command(head,od,tail ... ) ,i'll apply it to the binary file and paste the o/p in here.

many thanks.
# 19  
Old 09-24-2015
You've posted printouts of what some ASCII editors think that binary file looks like, none of which agree with each other, so we don't trust it. Try attaching the file itself.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File conversion from Binary to ASCII though UNIX command

Hi All , I have a mainframe file which contains the data in EBCDIC format.I have downloaded this file from mainframe to windows in binary format(unreadable raw data).Now I want convert this file to ASCII format(readable format data) through Unix command.I have tried iconv but that is not working... (2 Replies)
Discussion started by: STCET22
2 Replies

2. Shell Programming and Scripting

Converting a binary file to ascii and vice versa?

Hi All, I have a binary file which is being exported from a Database, and i need to convert that to ASCII format. How can i achieve that? And this solution should work for any file which is given to us; means they will give different files from different tables. Thanks in advance. (8 Replies)
Discussion started by: baranisachin
8 Replies

3. Shell Programming and Scripting

Difference between ascii and binary file -

what is the diff between ascii and binary file. my understand is that.. ascii file - has only line feed - \n in it where as binary file - has both line feed and carriage return in it- \r\n is that correct. also,what is the ksh command to identify whether it is a binary or ascii... (1 Reply)
Discussion started by: billpeter3010
1 Replies

4. UNIX for Dummies Questions & Answers

Ascii or Binary?

Hello all, I am working with ftp servers in unix, and always I have to get and put files but I don't know exactly if I have to get or put them as an ascii or binary. Some files that I use are: .txt, .sav, .fmb, .pct, .sh, .ksh, .dat, .log. Somebody can tell me what is the difference between... (2 Replies)
Discussion started by: Geller
2 Replies

5. Programming

Reading a binary file in text or ASCII format

Hi All, Please suggest me how to read a binary file in text or ASCII format. thanks Nagendra (3 Replies)
Discussion started by: Nagendra
3 Replies

6. Shell Programming and Scripting

binary to ascii

Hi, Is there a way to convert the binary file to ascii . the binary file is pipe delimited. from source the file(pipe delimited) is ftped to mainframe and from mainframe it is ftped to the unix box using binary format. Is there a way to change it back to ascii and view it? Thanks! (3 Replies)
Discussion started by: dnat
3 Replies

7. 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

8. Shell Programming and Scripting

Binary or ascii file

I want to verify the file is Binary or ascii file and accordingly I want to switch the program with ret code ie 0 or success and 1 for failure Can any one help me is this a correct syntex...i am getting error #!/bin/ksh $file filename if echo "ascii fie Found" else echo " binary... (6 Replies)
Discussion started by: u263066
6 Replies

9. Solaris

problem when decoding a binary file

I tried to decode a binary script using the command 'uudecode'. but it is giving error as 'No begining line'. 'uudecode -o <outfile name> <binary file>' Please help me in resolving this. (4 Replies)
Discussion started by: vamshikrishnab
4 Replies

10. 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
Login or Register to Ask a Question