🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 12-12-2017 05:54 PM
(4500 views)
I would like to change read/write permission for some folders I have on a server. I know that I can use x commands in SAS EG to do this and commands like
x cd '/filepath/';
and
x pwd;
both run and print output to the log. However, when I try to run
x ls -l;
so I can see the current permissions of folders in the directory, nothing prints to the log. Conceptually, this is all new to me so I am sure I am missing something simple.
Thanks in advance for your help.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Filename filelist pipe "ls -l";
Data _null_;
Infile filelist truncover;
Input filename $100.;
Put filename=;
Run;
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
X commands are usually turned off on EG, but if they're not in your environment something like the following will work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Filename filelist pipe "ls -l";
Data _null_;
Infile filelist truncover;
Input filename $100.;
Put filename=;
Run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This works well. Thanks for your help.