BookmarkSubscribeRSS Feed
sassharp
Calcite | Level 5

Anybody have a designed macro like this ?

http://support.sas.com/kb/24/820.html

this one is in windows. But do need on UNIX

3 REPLIES 3
sassharp
Calcite | Level 5


At the bottom of that page is macro %dirlistwin this macro is for windows.

Do need macro to work on UNIX directory/file.

TomKari
Onyx | Level 15

I can get you started. Unfortunately, I don't have access to a Unix machine to check out the format of the directory listing.

1. Take a copy of the Windows version of the macro.

2. Change line

%if %upcase( &SUBDIR ) = Y %then %let SUBDIR = /s ; %else %let SUBDIR = ;

to

%if %upcase( &SUBDIR ) = Y %then %let SUBDIR = -R ; %else %let SUBDIR = ;

This changes the option correctly to ask for a subdirectory listing in Unix.

3. change line

filename DIRLIST pipe "dir /-c /q &SUBDIR /t:c ""&PATH""" ;

to

filename DIRLIST pipe "ls -l &SUBDIR ""&PATH""" ;

This will mostly change the Windows "dir" command to the Unix "ls" command, which is the equivalent. I'm not sure if the quote structure around the directory name will work the same...you'll need to test that.

4. This should get you down to the section of code beginning with

      input line $varying1024. reclen ;

which is the statement that reads the directory info. I suggest you just comment out the rest of this step for now, which should result in one record, with a variable "line", for every line of your directory result. You can then use this example to recode the rest of the step to accomodate the different Unix format.

Good luck!

  Tom

Tom
Super User Tom
Super User

You can get the filename without using operating system commands.  Look at code posted by LINLIN on this thread for one example.

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1613 views
  • 0 likes
  • 3 in conversation