Skip to content Skip to sidebar Skip to footer
Showing posts with the label Echo

Python 3 - Faster Print & I/o

I'm currently involved in a Python project that involves handling massive amounts of data. In t… Read more Python 3 - Faster Print & I/o

Why Does Python Exit Immediately When I Pipe Code In With Echo But Not With Cat?

#!/bin/bash echo 'print('Hello 1')' | python3 cat | python3 -u Solution 1: You a… Read more Why Does Python Exit Immediately When I Pipe Code In With Echo But Not With Cat?

How To Disable Telnet Echo In Python Telnetlib?

Hi I known that I should send 'IAC DONT ECHO' message, but how may I do that using telnetli… Read more How To Disable Telnet Echo In Python Telnetlib?