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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.