7 lines
139 B
Python
Executable File
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")
|