cancel
Showing results for 
Search instead for 
Did you mean: 

Equivalent in UNIX????????

sassharp
Calcite | Level 5

Equivalent in UNIX????????

Message contains a hyperlink

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

Re: Equivalent in UNIX????????


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

Re: Equivalent in UNIX????????

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
Super User

Re: Equivalent in UNIX????????

Message contains a hyperlink

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