1
0
Fork 0
forked from swee/MeowNex
MeowNex/cc/good

4 lines
162 B
Text
Raw Normal View History

2024-09-23 12:18:21 -07:00
import subprocess
s = subprocess.run(["date"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
2024-09-23 12:19:35 -07:00
dait = s.stdout.decode().rstrip()
2024-09-23 12:18:21 -07:00
print(f"Good {dait} everyone.")