is there any way to figure this out? I want to run a command invisibly and do stuff at once
import os
def run():
os.system("python -m http.server C:/Showtape/payload/payload.exe 80")
print("Server running...")
print("Serving payload..")
What i wanted is, I want the command running invisibly and print the "Server running...", how im gonna do that?