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
Post a Comment