BookmarkSubscribeRSS Feed
Asmam
Fluorite | Level 6

Hi everyone,

 I create a global environnement variable unix (env), I want to transfer this variable to a macro variable sas, i used this command 

 

%let person=%sysget(env);
%put &person;

 

the macro variable person is empty, when I put the environnement variable unix HOME instead of env, it's working ! 

help me please ! 

 

3 REPLIES 3
Reeza
Super User

Are the variables case sensitive?

TomKari
Onyx | Level 15

If you're using EG on windows with a Unix SAS server, the SAS environment is spinning up a workspace server session for your EG session.

 

I can't think offhand how you could populate an environment variable in that workspace session. Could you perhaps have SAS read the value from a file instead?

 

Tom

Tom
Super User Tom
Super User

How are you getting this environment variable created? It would need to be in the unix shell that is launching the SAS workspace server that EG is connecting to in order to be visible to your SAS session.

 

If you can use PIPE then you can have SAS ask Unix what environment variables exist.

 

data _null_;
  infile 'env' pipe;
  input;
  put _infile_;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1617 views
  • 0 likes
  • 4 in conversation