forked from swee/MeowNex
4 lines
No EOL
162 B
Text
4 lines
No EOL
162 B
Text
import subprocess
|
|
s = subprocess.run(["date"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
|
dait = s.stdout.decode().rstrip()
|
|
print(f"Good {dait} everyone.") |