We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See https://git.cscherr.de/PlexSheep/hedu/issues/3
plex@theseus /tmp % hedu foofo -c ──────────────────────────────────── foofo ───────────────────────────────────── DATA IDX │ DATA AS HEX │ DATA AS CHAR ──────────────────────────────────────────────────────────────────────────────── 00000000 │ 68 65 6C 6C 6F 20 77 6F 72 6C 64 68 65 6C 6C 6F │ |hello␣worldhello| 00000006 │ 20 77 6F 72 6C 64 │ |␣world| ──────────────────────────────────────────────────────────────────────────────── 00000016 │ read total: 22 B (22 B) │ plex@theseus /tmp %
trying to read a fifo
In [19]: f = open("foofo", "w") In [20]: while True: ...: f.write("loop-") ...: time.sleep(1) ...: f.flush() ...: --------------------------------------------------------------------------- BrokenPipeError Traceback (most recent call last) Cell In[20], line 4 2 f.write("loop-") 3 time.sleep(1) ----> 4 f.flush() BrokenPipeError: [Errno 32] Broken pipe
but hedu quickly stops reading from it, resulting in a broken pipe for the writer process
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See https://git.cscherr.de/PlexSheep/hedu/issues/3
trying to read a fifo
but hedu quickly stops reading from it, resulting in a broken pipe for the writer process
The text was updated successfully, but these errors were encountered: