Mercurial > hg > config
view python/which.py @ 173:61282540f7c7
add curl and arandr to needed packages
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 23 Oct 2011 20:35:57 -0700 |
parents | 3e52d6bcac99 |
children | b91750a108b2 |
line wrap: on
line source
def findInPath(fileName, path=os.environ['PATH']): """python equivalent of which; should really be in the stdlib""" dirs = path.split(os.pathsep) for dir in dirs: if os.path.isfile(os.path.join(dir, fileName)): return os.path.join(dir, fileName) if mozinfo.isWin: if os.path.isfile(os.path.join(dir, fileName + ".exe")): return os.path.join(dir, fileName + ".exe") if __name__ == '__main__': for i in sys.argv[1:]: print findInPath(i)