<?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: SAS Script to identify unix files does not have owner and email same report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678027#M204601</link>
    <description>&lt;P&gt;I haven't worked with unix for some time, but why do you want to bring sas into this problem, such things should be solvable with bash-commands easily.&lt;/P&gt;
&lt;P&gt;Humbly asking &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; for to share his wisdom.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Aug 2020 10:05:24 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2020-08-20T10:05:24Z</dc:date>
    <item>
      <title>SAS Script to identify unix files does not have owner and email same report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678023#M204600</link>
      <description>&lt;P&gt;hi all ,&lt;/P&gt;&lt;P&gt;would you pleas help on sas script that identify the files in unix environment that does not have owner name and send the report for same please. so that i can verify and delete accordingly.&lt;/P&gt;&lt;P&gt;Sample file in /home/data - directory&amp;nbsp; that does not have owner name&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-rwxrwx--- 1 759320 sssssss 24167 24 Oct 2008 FFFFFFFFF.TXT&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:00:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678023#M204600</guid>
      <dc:creator>JJP1</dc:creator>
      <dc:date>2020-08-20T10:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Script to identify unix files does not have owner and email same report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678027#M204601</link>
      <description>&lt;P&gt;I haven't worked with unix for some time, but why do you want to bring sas into this problem, such things should be solvable with bash-commands easily.&lt;/P&gt;
&lt;P&gt;Humbly asking &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; for to share his wisdom.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:05:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678027#M204601</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-08-20T10:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Script to identify unix files does not have owner and email same report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678034#M204603</link>
      <description>&lt;P&gt;I'm coming!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is a UNIX one-liner:&lt;/P&gt;
&lt;PRE&gt;find /home/data -nouser&lt;/PRE&gt;
&lt;P&gt;To read the list of resulting names into a SAS dataset, do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename oscmd pipe "find /home/data -nouser 2&amp;gt;&amp;amp;1";

data names;
infile oscmd truncover;
input name $200.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The "2&amp;gt;&amp;amp;1" construct reroutes stderr output to stdout, so in case of a problem you get one or a few observation(s) containing the problem message.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:18:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Script-to-identify-unix-files-does-not-have-owner-and-email/m-p/678034#M204603</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-08-20T10:18:22Z</dc:date>
    </item>
  </channel>
</rss>

