<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Producing a list of Users from an EG Library in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99665#M258018</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that but I am not able to do anything on Unix.&lt;/P&gt;&lt;P&gt;It would have to be on Enterprise Guide&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Feb 2013 13:42:41 GMT</pubDate>
    <dc:creator>Neens1</dc:creator>
    <dc:date>2013-02-06T13:42:41Z</dc:date>
    <item>
      <title>Producing a list of Users from an EG Library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99663#M258016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to create a dataset of the library contents that will just show me the dataset name and the owner name.&lt;/P&gt;&lt;P&gt;It seems really simple&amp;nbsp; but I think I must be missing something.&lt;/P&gt;&lt;P&gt;Any ideas welcome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 12:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99663#M258016</guid>
      <dc:creator>Neens1</dc:creator>
      <dc:date>2013-02-06T12:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Producing a list of Users from an EG Library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99664#M258017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;on unix...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro file_info(root=/);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; filename inf pipe "ls -l &amp;amp;root" Lrecl=200;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; data file_info (drop= txt) ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile inf lrecl=200 truncover ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input txt $char200. ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if index(txt,'&amp;gt;') &amp;gt;=1 or index(txt,'&amp;lt;') &amp;gt;=1 then delete ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; user_id=scan(txt,3,' ') ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %mend file_info;&lt;/P&gt;&lt;P&gt;&amp;nbsp; %file_info(root=$HOME);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on windows..you could replace the pipe command to a dos and parse the results ( I think it is dir /s/q "c:\")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 13:35:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99664#M258017</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-02-06T13:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Producing a list of Users from an EG Library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99665#M258018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that but I am not able to do anything on Unix.&lt;/P&gt;&lt;P&gt;It would have to be on Enterprise Guide&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 13:42:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99665#M258018</guid>
      <dc:creator>Neens1</dc:creator>
      <dc:date>2013-02-06T13:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Producing a list of Users from an EG Library</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99666#M258019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually, the code is submitted from a sas program node within EG.&amp;nbsp; Which syntax you use depends on where your SAS is actually running.&amp;nbsp; If you use EG on Windows and sas is installed locally, then you would use the windows syntax.&amp;nbsp; If you use EG and your sas runs remotely on an unix server, then you would use the unix syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 14:28:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Producing-a-list-of-Users-from-an-EG-Library/m-p/99666#M258019</guid>
      <dc:creator>DBailey</dc:creator>
      <dc:date>2013-02-06T14:28:51Z</dc:date>
    </item>
  </channel>
</rss>

