I'm looking for the UNIX equivalent of this code:
Filename filelist pipe "dir /b /s c:\temp\*.sas"; Data _null_; Infile filelist truncover; Input filename $100.; Put filename=; Run;
Filename filelist pipe "ls -R /temp/";
Data _null_;
Infile filelist truncover;
Input filename $100.;
Put filename=;
Run;
ls is the equivalent to DIR from Windows:
http://linuxcommand.org/lc3_man_pages/ls1.html
There's also a macro here that does this using pure SAS functions if you do not have PIPE or X command access.
@SAShole wrote:
I'm looking for the UNIX equivalent of this code:
Filename filelist pipe "dir /b /s c:\temp\*.sas"; Data _null_; Infile filelist truncover; Input filename $100.; Put filename=; Run;
Filename filelist pipe "ls -R /temp/";
Data _null_;
Infile filelist truncover;
Input filename $100.;
Put filename=;
Run;
ls is the equivalent to DIR from Windows:
http://linuxcommand.org/lc3_man_pages/ls1.html
There's also a macro here that does this using pure SAS functions if you do not have PIPE or X command access.
@SAShole wrote:
I'm looking for the UNIX equivalent of this code:
Filename filelist pipe "dir /b /s c:\temp\*.sas"; Data _null_; Infile filelist truncover; Input filename $100.; Put filename=; Run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.