How can I determine the operating system and hostname using common lisp?
common-lisp, sbcl
Solution
I'd use the 'environment' functions:
* (machine-instance)
"myhostname"
* (machine-type)
"X86-64"
* (machine-version)
"Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz"
* (software-type)
"Linux"
* (software-version)
"2.6.32-3-amd64"
Problem
To get my .sbclrc file working on the two computers I use, I'd like a way to get the hostname and/or operating system from within sbcl. I know I could set and then look for an environment variable, but is there a more direct approach? Update I changed the question to refer to common lisp, since the answer from Ken is not specific to sbcl.