hi everyone ,
how to find out if the environment is windows or unix . I want to execute such similar code as shown below. Please suggest
import os
if (os.getenv("windows"):
os.system(cmd/c ...)
if (os.getenv("unix")
os.system(sh shellscript.sh)
Thanks for all your help.