RE: Terminate a python script from linux shell / bash script

2008-07-13 Thread Gros Bedo
Thank you guys for your help. My problem is that I project to use this command to terminate a script when uninstalling the software, so I can't store the PID. This command will be integrated in the spec file of the RPM package. Here's the script I'll use, it may help someone else: #!/bin/sh #

RE: Terminate a python script from linux shell / bash script

2008-07-10 Thread Gros Bedo
>>That's not how it works. If you kill one running python script it will not >>effect other python scripts. Each script has its own interpreter process >>running. >GB> So, is there a way from the Linux shell or a bash script to terminate >GB> just one specific Python script ? >>So just kill it

RE: Freesoftware for auto/intelligent code completing in Python

2008-07-09 Thread Gros Bedo
Hello, Ali I totally support you, neither I couldn't find any really working code completion for python in a free software, and it's really a mess, at least on Linux. On Windows, there is PyScripter (http://pyscripter.googlepages.com/), but it is based on Delphi, and as such it's not portable.

Terminate a python script from linux shell / bash script

2008-07-09 Thread Gros Bedo
Hello :-) I have a question about Python and Linux shell. I have a python program which is permanently resident in the end-user system. I'm currently producing a RPM package, and it works nicely. The problem is that when I uninstall it, my program keeps running in the background, even if the f