how to inspect the bytes in a file?


 
Thread Tools Search this Thread
Top Forums Programming how to inspect the bytes in a file?
# 1  
Old 04-13-2009
how to inspect the bytes in a file?

What is the easiest way to inspect the bytes stored in a file?

Ideally, If my file was 10 bytes each of which had only the high bit set, I'd be able to browse for it and get output like this:
Code:
01 - 10000000
02 - 10000000
03 - 10000000
04 - 10000000
05 - 10000000
06 - 10000000
07 - 10000000
08 - 10000000
09 - 10000000
10 - 10000000

or perhaps this:
Code:
01 - 80
02 - 80
03 - 80
04 - 80
05 - 80
06 - 80
07 - 80
08 - 80
09 - 80
10 - 80

I'm currently coding on a Mac.
# 2  
Old 04-14-2009
In pseudo-code?
Code:
open file
while !eof
    read byte
    if matching
        print counter - byte
    counter++
close file

# 3  
Old 04-14-2009
That I already knew. Translating that pseudo-code into actual C or C++ or Java code is hardly the easiest way to do this. Someone recommended googling 'Hex Editor' which I will be doing now.
# 4  
Old 04-14-2009
Since your original posting sounded (and still does) like "Please do my homework for me" I didn't want to spill too much. So please tell me: are you learning C/C++/Java? By yourself or in class? Is this a homework assignment? What have you got so far? Are you stuck on any specific part?
I'll be happy to help someone learn as long as I'm sure I'm not helping cheat.
# 5  
Old 04-14-2009
I graduated from college years ago. I have since been writing a lot of PHP and have rarely, if ever, dealt with raw binary files. I can totally appreciate your desire to not assist those little cheats. I am not one of them. I am, however, returning to C++ after many years absence.

I'm using hexdump which seems perfect:
Code:
My-Mac:red sneakyimp$ hexdump -vx rgb.raw
0000000    0000    0000    0000    0000    0000    0000    0000    0000
0000010    0000    0000    0000    0000    ffff    0000    0000    0000
0000020    0000    0000
0000024

# 6  
Old 04-14-2009
If you only want to display a raw file, hexdump is perfect for that. From your original post, however, it seemed that you only want to display those postition matching a certain pattern of that file.

Should you want to implement something similar yourself, file opening and loops work pretty much the same as in PHP, "strings" are really arrays of char (which is 1 byte), and printf has a %X conversion, which will output the value as hex. If you need more information, feel free to ask.
# 7  
Old 04-14-2009
I think we got confused since you were asking in the programming forum. You just wanted an existing tool, people thought you wanted us to make you one. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk code to inspect variable before printing

i have a unique scenario id like help with. im currently running this command and it does what i want: printf '%s\n' "${RawContent}" | awk '/## Beginning Stages ##/,/## Ending Stages ##/' | awk '!/^#.*\!|^#\!|DefaultError/' Can this be shortened? I'm looking for something portable as... (8 Replies)
Discussion started by: SkySmart
8 Replies

2. Shell Programming and Scripting

Get file's first x bytes

is there a better way to do this: head -c 10000k /var/dump.log | head -c 6000k unfortunately, the "-c" option is not available on sun solaris. so i'm looking at "dd". but i dont know how to use it to achieve the same exact goal as the above head command. this needs to work on both solaris... (5 Replies)
Discussion started by: SkySmart
5 Replies

3. Shell Programming and Scripting

Shell script - entered input(1-40 bytes) needs to be converted exactly 40 bytes

hello, suppose, entered input is of 1-40 bytes, i need it to be converted to 40 bytes exactly. example: if i have entered my name anywhere between 1-40 i want it to be stored with 40 bytes exactly. enter your name: donald duck (this is of 11 bytes) expected is as below - display 11... (3 Replies)
Discussion started by: shravan.300
3 Replies

4. UNIX for Dummies Questions & Answers

X bytes of 0, Y bytes of random data, Z bytes of 5, T bytes of 1. ??

Hello guys. I really hope someone will help me with this one.. So, I have to write this script who: - creates a file home/student/vmdisk of 10 mb - formats that file to ext3 - mounts that partition to /mnt/partition - creates a file /mnt/partition/data. In this file, there will... (1 Reply)
Discussion started by: razolo13
1 Replies

5. Programming

Copying 1024 bytes data in 3-bytes chunk

Hi, If I want to copy a 1024 byte data stream in to the target location in 3-bytes chunk, I guess I can use the following script. dd bs=1024 count=3 if=/src of=/dest But, I would like to know, how to do it via a C program. I have tried this with memcpy(), that did not help. (3 Replies)
Discussion started by: royalibrahim
3 Replies

6. Shell Programming and Scripting

Error PHP Fatal error: Allowed memory size of 67108864 bytes exhausted(tried to allocate 401 bytes)

While running script I am getting an error like Few lines in data are not being processed. After googling it I came to know that adding such line would give some memory to it ini_set("memory_limit","64M"); my input file size is 1 GB. Is that memory limit is based on RAM we have on... (1 Reply)
Discussion started by: elamurugu
1 Replies

7. UNIX for Dummies Questions & Answers

Bytes of character in file

Hi, How do I check for the total bytes of character used by a file? Can I used a od command to check? Thanks. (1 Reply)
Discussion started by: user50210
1 Replies

8. Shell Programming and Scripting

Remove first N bytes and last N bytes from a binary file on AIX.

Hi all, Does anybody know or guide me on how to remove the first N bytes and the last N bytes from a binary file? Is there any AWK or SED or any command that I can use to achieve this? Your help is greatly appreciated!! Best Regards, Naveen. (1 Reply)
Discussion started by: naveendronavall
1 Replies

9. Shell Programming and Scripting

delete bytes from file

I'm doing a bit of hex editing with dd and I can replace values fairly simply. However, I've run across a situation where I need to delete bytes in the file and I'm not sure how to do that. For example: Input file has: 1234567890 Output needs to be: 123abc90 I tried this: printf... (6 Replies)
Discussion started by: Loriel
6 Replies

10. UNIX for Dummies Questions & Answers

Take a file from the system and put on tape and reset the file to 0 bytes

:mad: I did this the other day but one of my support personnel removed my history so i could call it back up to remeber the exact command since i am air-headed at times. I am trying to take a 30 MEG file off the system and drop it to tape then i want to make the file go back to being 0 bytes so... (1 Reply)
Discussion started by: JackieRyan26
1 Replies
Login or Register to Ask a Question