Giovanni Bagagli wrote: >import os >os.execlp("sh", "./test.sh") > >dove test.sh contiene: > >echo cavolo > test.txt > > >Ma non viene creato il file test.txt > Colpa mia. Prova cosi': import os os.execlp("sh", "sh", "./test.sh") Ciao. Gianmario.