BookmarkSubscribeRSS Feed
atul_desh
Quartz | Level 8

/*SAS Job name test.sas*/

libname srcf "$1";

data srcf.$2;

input a;

datalines;

1

2

;

run;

I want to run as below : 

/*value of $1 = /mdir/subdir/*/

/*value of $2 = test_par*/

Unix command as below : 

sasgsub -gridwait -gridsubmitpgm test.sas /mdir/subdir/1 test_par

4 REPLIES 4
Kurt_Bremser
Super User

$1, $2 and so on are UNIX environment variables that a UNIX shell parses from the commandline with which a shell script was invoked.

To get the value of a UNIX environment variable, use the sysget() data step or %sysget() macro function.

atul_desh
Quartz | Level 8

command : 

 

sasgsub -gridwait -gridsubmitpgm /path1/test.sas -gridsasopts "(-sysparm 'dest_path/fol1 testds')"

 

test.sas : 

 

%let path=%scan(sysparm(),1,' ');
%let ds=%scan(sysparm(),2,' ');
libname pt "&path";
data pt.&ds;
input a;
datalines;
1
2
;
run;

 

path & ds are not resolving !!

Kurt_Bremser
Super User

When you do this:

%let path=%scan(sysparm(),1,' ');

%scan scans the TEXT(!) sysparm() for the first word, and delivers

sysparm()

so &path will always just render sysparm(). Also keep in mind that the macro preprocessor only knows the data type text, and therefore quotes around strings are not needed and cause harm.

Try this instead:

data _null_;
length path $100;
path = scan(sysparm(),1,' ');
call symput('path',trim(path));
run;
atul_desh
Quartz | Level 8

It worked : 

 

%let path=%scan(&sysparm,1,' ');
%let ds=%scan(&sysparm,2,' ');
libname pt "&path";
data pt.&ds;
input a;
datalines;
1
2
;
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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 1677 views
  • 0 likes
  • 2 in conversation