зеркало из https://github.com/mozilla/FlightDeck.git
11 строки
343 B
Python
11 строки
343 B
Python
|
# from http://jimmyg.org/blog/2009/working-with-python-subprocess.html
|
||
|
import os
|
||
|
|
||
|
|
||
|
def whereis(program):
|
||
|
for path in os.environ.get('PATH', '').split(':'):
|
||
|
if os.path.exists(os.path.join(path, program)) and \
|
||
|
not os.path.isdir(os.path.join(path, program)):
|
||
|
return os.path.join(path, program)
|
||
|
return None
|