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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1639 views
  • 0 likes
  • 4 in conversation