[PIPython] Principiante: Eseguire comandi Unix da Python

Gianmario Salvetti salvetti.gianmario
Ven 19 Nov 2004 15:16:52 CET


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.



More information about the Python mailing list