I want to enumerate the list of all environment variables available in my Lisp process. I want the same list that is returned by the C variable environ
.
Neither SBCL nor Clozure CL seem to provide it out of the box. Can I do it using CFFI?
I want to enumerate the list of all environment variables available in my Lisp process. I want the same list that is returned by the C variable environ
.
Neither SBCL nor Clozure CL seem to provide it out of the box. Can I do it using CFFI?
Copyright © 2021 Jogjafile Inc.
Interfacing with the OS and common lisp is still quite dependent on your lisp distribution. So more or less is not easy to find a good library that works in all CL distributions.
I recommend you to work with UIOP, which comes with ASDF 3 and above and it is the best library for working with the OS inside common lisp nowadays. However it doesn't have a function to list the environment variables, furthermother if we take a look at how it works with environment varables we can see that for every lisp distribution we have a different version of accessing the variables only for example:
so for getting one variable:
as pointed in a comment if you are usign SBCL you can get this with it:
SB-EXT:POSIX-ENVIRON
example in c:
example in SBCL
So for other implementations you mut investigate how to,
Finally exist a good library called OSICAT that:
so in your case you must use:
SO I hope that this should work