packet capture - How to hexdump few lines in a large using only line number.(Not bytes) -


I am using hexdump to display the file in a readable format. The file is too large and I only know the line number I lines can be indefinite (10 characters or 100 characters)

Do some lines have an option for hexdum 5 to 10 or 17-25 I have read man pages and a better explanation.

Thank you ..

Is it possible to cut the rows from the file and pip them into hexdump? For example,

cat myfile | Sed -n '17, 25 {p; N; N;} '| Od -x

Maybe you have what you need if you myfile

>

Comments

Popular posts from this blog

Editing Python Class in Shell and SQLAlchemy -

import - Python ImportError: No module named wmi -

uislider - In a MATLAB GUI, how does one implement a continuously varying slider from a GUIDE created .m file? -