9 lines
406 B
Python
9 lines
406 B
Python
#!/usr/bin/env python3
|
|
from pathlib import Path
|
|
meta = Path("conductor/directives/defer_not_catch_for_native_crashes/meta.md")
|
|
data = meta.read_bytes()
|
|
# Print bytes around position 110-130
|
|
print("Bytes 110-130:", data[110:130])
|
|
print("As string (utf-8):", data[110:130].decode("utf-8", errors="replace"))
|
|
print("Length:", len(data))
|
|
print("Char at byte 122:", hex(data[122]) if len(data) > 122 else "N/A") |