mirror of
https://github.com/zoriya/AnonymousGoose.git
synced 2025-12-06 06:36:10 +00:00
9 lines
142 B
Python
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)
|