Skip to content

Latest commit

 

History

History
4 lines (3 loc) · 240 Bytes

971.md

File metadata and controls

4 lines (3 loc) · 240 Bytes

Dump the file in hexadecimal format; remove all '.' from the output; only print the last column (relevant); print first 10 lines:
xxd Pho.jpg | tr -d "." | gawk '{print $10}' | head