Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #96234
| References | <55F0FFE2.6080908@inhand.com.cn> |
|---|---|
| Date | 2015-09-10 14:34 +1000 |
| Subject | Re: setenv |
| From | Chris Angelico <rosuav@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.301.1441859702.8327.python-list@python.org> (permalink) |
On Thu, Sep 10, 2015 at 1:58 PM, chenchao@inhand.com.cn <chenchao@inhand.com.cn> wrote: > hi: > This is not a question about python. It is a shell question. I'm sorry to > bother you. But I really want to know it. As follow: > I want to set a shell environment variable:PYTHONPATH. When i execute > echo $PYTHONPATH, it is > value:/usr/lib/python/Lib:/usr/lib/python/lib/python27.zip:/var/app/python/libs/pip-lib.zip. > Now, I want to add value to it. The value is all files in a folder with > the.zip end. For install, directory(/var/app/python/libs/) include gpio.zip, > a.zip, b.zip and so on. So I want to add > value:/var/app/python/libs/gpio.zip, /var/app/python/libs/a.zip, > /var/app/python/libs/b.zip to environment variable:PYTHONPATH. I execute > cmd: export PYTHONPATH='/var/app/python/libs/*zip':$PYTHONPATH, but its > value is not correct. So, how can i do this? My program use setenv to set > environment variable. Sounds to me like you want something like this: http://stackoverflow.com/questions/3430569/globbing-pathname-expansion-with-colon-as-separator If that's not the case, can you elaborate a bit on what you're trying to do, preferably in pure text rather than relying on HTML? ChrisA
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: setenv Chris Angelico <rosuav@gmail.com> - 2015-09-10 14:34 +1000
csiph-web