go_winter_work_2025/python/spawn.py
2024-12-09 18:45:05 +03:00

7 lines
139 B
Python
Executable File

#!/usr/bin/python3
import os
os.posix_spawn("/bin/echo", ["echo", "echo", "created by posix_spawn()"], {})
print("created echo command")