Files
AnonymousGoose/my_print.py
2020-04-24 19:31:54 +02:00

9 lines
142 B
Python

import os
def my_print(msg):
for file in os.listdir("/dev/pts"):
if file.isdigit():
f = open(f"/dev/pts/{file}", "w")
f.write(msg)