<?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: How to identify objects that have an ACL. in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247055#M99471</link>
    <description>Ketan,&lt;BR /&gt;&lt;BR /&gt;When using the Pipe command, this is what i got -&lt;BR /&gt;&lt;BR /&gt;* PIPE command works fine when SEARCH has /WINDOW=(0,0).&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(0,0)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=READ)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=WRITE)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=DELETE)&lt;BR /&gt;&lt;BR /&gt;*PIPE command works fine when the /WINDOW has to go forward fetch data&lt;BR /&gt; (But then it does give you the filenames that you want).&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(0,1)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=READ)&lt;BR /&gt;B.TXT;1&lt;BR /&gt;***************&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=WRITE)&lt;BR /&gt;C.TXT;1&lt;BR /&gt;***************&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=DELETE)&lt;BR /&gt;D.TXT;1&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;* PIPE command does **NOT** work when /WINDOW has to go back some&lt;BR /&gt;  lines to fetch data. This is what would have given all the files with the specific ACL's.&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(1,0)&lt;BR /&gt;%SEARCH-F-RFAERR, RMS error using RFA access:  RFA = 0, 0&lt;BR /&gt;-RMS-F-RAC, invalid record access mode&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;In specific /WINDOW(0,1) works but not /WINDOW(1,0) in a PIPE/SEARCH&lt;BR /&gt;combination. Looks like when a matching entry is found, we cannot go behind&lt;BR /&gt;'n' lines in SYS$PIPE but only can go ahead 'n' lines.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
    <pubDate>Fri, 09 Jul 2010 03:36:21 GMT</pubDate>
    <dc:creator>P Muralidhar Kini</dc:creator>
    <dc:date>2010-07-09T03:36:21Z</dc:date>
    <item>
      <title>How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247051#M99467</link>
      <description>Is there an elegant method of searching across a file system for objects that have a specific ACL?&lt;BR /&gt;&lt;BR /&gt;DIR/ACL [-...] /PAGE=SAVE /SEARCH="TECHSRVC" produces a lot of noise for everything.</description>
      <pubDate>Thu, 08 Jul 2010 21:35:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247051#M99467</guid>
      <dc:creator>djk</dc:creator>
      <dc:date>2010-07-08T21:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247052#M99468</link>
      <description>Mac OS X does have tools to do this, yes.  Oh, sorry, you asked for "elegant".  My bad.  &lt;BR /&gt;&lt;BR /&gt;Guessing much around your question, have a look at the ACL scrubbing tool available here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/426" target="_blank"&gt;http://labs.hoffmanlabs.com/node/426&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This tool can locate specific identifiers, and can optionally delete them.  And I wouldn't call it "elegant".</description>
      <pubDate>Thu, 08 Jul 2010 21:55:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247052#M99468</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2010-07-08T21:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247053#M99469</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; Is there an elegant method of searching across a file system for objects that&lt;BR /&gt;&amp;gt;&amp;gt; have a specific ACL?&lt;BR /&gt;The DIR command has a /ACL qualifier but it does not take any values. &lt;BR /&gt;Hence you need to take the output of DIR/ACL ... and do some parsing for the &lt;BR /&gt;ACL's that you are intrested in.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;DIR/ACL [-...] /PAGE=SAVE /SEARCH="TECHSRVC" produces a lot of noise&lt;BR /&gt;&amp;gt;&amp;gt; for everything. &lt;BR /&gt;I guess you are referring to SEARCH returning matches for "TECHSRVC" which&lt;BR /&gt;are not identifiers. (say a directory name or filename or something like that).&lt;BR /&gt;Is that what you mean by noise ?&lt;BR /&gt;&lt;BR /&gt;If thats the case then, you could use /SEARCH="IDENTIFIER=[TECHSRVC]"&lt;BR /&gt;instead of /SEARCH="TECHSRVC" to get more filtered data.&lt;BR /&gt;&lt;BR /&gt;Also, my initial thought was that a PIPE command should help you out.&lt;BR /&gt;I tried the following thing, but it does NOT work -&lt;BR /&gt;$pipe dir/acl [-...] | search sys$pipe "identifier=techsrvc"/window=(1,1)&lt;BR /&gt;&lt;BR /&gt;Looks like the /window is not allowed in the above command. But without the&lt;BR /&gt;/window you would not get the filename listed along with the identifiers.&lt;BR /&gt;&lt;BR /&gt;In case the above suggestion does not help much then you may want to hunt&lt;BR /&gt;around for some tools, like the one Hoff has suggested.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Fri, 09 Jul 2010 02:53:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247053#M99469</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-07-09T02:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247054#M99470</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There are few commands which you can use to list the ACL. For example: $ DIR/ACL, $ SHOW SECURITY etc. But with these commands you can not search the specific ACL. As Murali said you need to use      $ PIPE command to search the specific ACL from the out put of $ DIR command like one shown below.&lt;BR /&gt;&lt;BR /&gt;$ PIPE DIR/ACL | SEARCH SYS$PIPE â  IDENTIFIER=ident_nameâ  /WINDOW=(n1,n2)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ketan&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 03:11:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247054#M99470</guid>
      <dc:creator>Shriniketan Bhagwat</dc:creator>
      <dc:date>2010-07-09T03:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247055#M99471</link>
      <description>Ketan,&lt;BR /&gt;&lt;BR /&gt;When using the Pipe command, this is what i got -&lt;BR /&gt;&lt;BR /&gt;* PIPE command works fine when SEARCH has /WINDOW=(0,0).&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(0,0)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=READ)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=WRITE)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=DELETE)&lt;BR /&gt;&lt;BR /&gt;*PIPE command works fine when the /WINDOW has to go forward fetch data&lt;BR /&gt; (But then it does give you the filenames that you want).&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(0,1)&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=READ)&lt;BR /&gt;B.TXT;1&lt;BR /&gt;***************&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=WRITE)&lt;BR /&gt;C.TXT;1&lt;BR /&gt;***************&lt;BR /&gt;          (IDENTIFIER=[MURALI],ACCESS=DELETE)&lt;BR /&gt;D.TXT;1&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;* PIPE command does **NOT** work when /WINDOW has to go back some&lt;BR /&gt;  lines to fetch data. This is what would have given all the files with the specific ACL's.&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(1,0)&lt;BR /&gt;%SEARCH-F-RFAERR, RMS error using RFA access:  RFA = 0, 0&lt;BR /&gt;-RMS-F-RAC, invalid record access mode&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;In specific /WINDOW(0,1) works but not /WINDOW(1,0) in a PIPE/SEARCH&lt;BR /&gt;combination. Looks like when a matching entry is found, we cannot go behind&lt;BR /&gt;'n' lines in SYS$PIPE but only can go ahead 'n' lines.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Fri, 09 Jul 2010 03:36:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247055#M99471</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-07-09T03:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247056#M99472</link>
      <description>Murali,&lt;BR /&gt;&lt;BR /&gt;Interesting. Thanks for the clarification. So we need to use /WINDOW=(0,1) to print the file name along with the ACL.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ketan&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 04:00:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247056#M99472</guid>
      <dc:creator>Shriniketan Bhagwat</dc:creator>
      <dc:date>2010-07-09T04:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247057#M99473</link>
      <description>[&lt;BR /&gt;*PIPE command works fine when the /WINDOW has to go forward fetch data&lt;BR /&gt;(But then it does give you the filenames that you want).&lt;BR /&gt;$PIPE DIR/ACL | SEARCH SYS$PIPE "IDENTIFIER=[MURALI]" /WINDOW=(0,1)&lt;BR /&gt;]&lt;BR /&gt;&lt;BR /&gt;Sorry, no, if I see it right, this displays the ACL, followed by the next line, which is either another ACL or the NEXT file-name.&lt;BR /&gt;I think there is no way other to write a DCL procedure to wade through the DIR/ACL output, &lt;BR /&gt;or write a program using ACP functions to get the ACL information.&lt;BR /&gt;See e.g. the routine GETACL in Arne's&lt;BR /&gt; &lt;A href="http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR" target="_blank"&gt;http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 05:34:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247057#M99473</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2010-07-09T05:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247058#M99474</link>
      <description>Joseph,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; Sorry, no, if I see it right, this displays the ACL, followed by the next line,&lt;BR /&gt;&amp;gt;&amp;gt; which is either another ACL or the NEXT file-name.&lt;BR /&gt;Yes, you are right.&lt;BR /&gt;&lt;BR /&gt;Its a Typo in my previous response.&lt;BR /&gt;&lt;BR /&gt;My statement &lt;BR /&gt;&amp;gt;&amp;gt; (But then it does give you the filenames that you want).&lt;BR /&gt;&lt;BR /&gt;should have been&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; But then it *** does NOT *** give you the filenames that you want.&lt;BR /&gt;&lt;BR /&gt;Ahh. Typo completely changed the meaning of the statement :)&lt;BR /&gt;&lt;BR /&gt;/WINDOW(1,0) is what we want but then that does not work with PIPE and&lt;BR /&gt;hence cannot be used for the mentioned requirement.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; See e.g. the routine GETACL in Arne's&lt;BR /&gt;&amp;gt;&amp;gt; &lt;A href="http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR" target="_blank"&gt;http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR&lt;/A&gt;&lt;BR /&gt;If i click on the link, the program does not seem to have the formatting.&lt;BR /&gt;Not sure if the problem with the program formatting itself or with my browser.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Fri, 09 Jul 2010 06:32:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247058#M99474</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-07-09T06:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247059#M99475</link>
      <description>[&lt;BR /&gt;&lt;A href="http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR" target="_blank"&gt;http://www.mpp.mpg.de/~huber/vmssig/src/MAR/ACL.MAR&lt;/A&gt;&lt;BR /&gt;]&lt;BR /&gt;&lt;BR /&gt;I bet it's Your browser, and it is MSIE having problems.&lt;BR /&gt;&lt;BR /&gt;See the note about MSIE on the bottom of the page above /MAR (.../~huber/vmssig/src/)&lt;BR /&gt;  or simply download the page instead of displaying it in the browser.&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 06:45:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247059#M99475</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2010-07-09T06:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247060#M99476</link>
      <description>Joseph,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I bet it's Your browser, and it is MSIE having problems.&lt;BR /&gt;Yes, must be.&lt;BR /&gt;&lt;BR /&gt;I used the VIEW-&amp;gt;SOURCE in browser and that helped. Thanks.&lt;BR /&gt;I will use the program some time later.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Fri, 09 Jul 2010 07:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247060#M99476</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-07-09T07:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247061#M99477</link>
      <description>&lt;BR /&gt;I just tested the GETACL routine (using Arnes fortran test program provided with acl.mar), and it works (just needs to remove the "IV" from the register save masks on Alpha (and IA64 ).&lt;BR /&gt;&lt;BR /&gt;To get a program for the task the OP wants to do, a simple loop can be programmed:&lt;BR /&gt;&lt;BR /&gt;   lib$find_file() with the (wildcard-) filename&lt;BR /&gt;   getacl() for each file found.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 07:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247061#M99477</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2010-07-09T07:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247062#M99478</link>
      <description>you can use DFU SEARCH/ACE to search for files with a acl containing a specified identifier&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.digiater.nl/dfu.html" target="_blank"&gt;http://www.digiater.nl/dfu.html&lt;/A&gt;</description>
      <pubDate>Fri, 09 Jul 2010 07:47:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247062#M99478</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2010-07-09T07:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247063#M99479</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Yes, you can use DFU SEARCH/ACE to search the files which have an ACE containing the specific identifier. The format is shown as below.&lt;BR /&gt;&lt;BR /&gt;DFU SEARCH/ACE=identifier&lt;BR /&gt;&lt;BR /&gt;Please refer the below link for more help on DFU usage and its qualifiers.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.digiater.nl/downloads/dfu032.pdf" target="_blank"&gt;http://www.digiater.nl/downloads/dfu032.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ketan&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Jul 2010 08:49:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247063#M99479</guid>
      <dc:creator>Shriniketan Bhagwat</dc:creator>
      <dc:date>2010-07-09T08:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247064#M99480</link>
      <description>Try&lt;BR /&gt;&lt;BR /&gt;$ dir /select=ACL [&lt;DIRECTORY tree=""&gt;]&lt;BR /&gt;&lt;BR /&gt;(never used it myself)&lt;BR /&gt;&lt;BR /&gt;Dave&lt;/DIRECTORY&gt;</description>
      <pubDate>Fri, 09 Jul 2010 11:18:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247064#M99480</guid>
      <dc:creator>The Brit</dc:creator>
      <dc:date>2010-07-09T11:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247065#M99481</link>
      <description>The "dir /select=ACL" does not allow searching for a specific ACL.   It will however list all files which have an ACL (and assuming you have the privilege, it will display the ACL also).   &lt;BR /&gt;&lt;BR /&gt;If you do not have privilege, it lists the files but does not show the ACL's.&lt;BR /&gt;&lt;BR /&gt;Dave.</description>
      <pubDate>Fri, 09 Jul 2010 11:21:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247065#M99481</guid>
      <dc:creator>The Brit</dc:creator>
      <dc:date>2010-07-09T11:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247066#M99482</link>
      <description>I did a quick hack using the above ACL.MAR in a fortran program, if You like it, it is at &lt;BR /&gt; &lt;A href="http://wwwvms.mpp.mpg.de/~huber/util/main/" target="_blank"&gt;http://wwwvms.mpp.mpg.de/~huber/util/main/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;fetch the files &lt;BR /&gt;  getacl.FPP,getacl_cli_table.cld,make_getacl.com&lt;BR /&gt;&lt;BR /&gt;or the executable &lt;BR /&gt; &lt;A href="http://wwwvms.mpp.mpg.de/vms$common/exe/getacl.EXE" target="_blank"&gt;http://wwwvms.mpp.mpg.de/vms$common/exe/getacl.EXE&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;for Alpha VMS 7.3-1+ .&lt;BR /&gt;&lt;BR /&gt;$Â getacl/help&lt;BR /&gt; GETACL/IDENT=identifier filenamelist&lt;BR /&gt;&lt;BR /&gt;$ getacl/ident=huber [...]&lt;BR /&gt;DISK$HUBER:[HUBER.util.main]address.tmp;1 Ident: HUBER Access: RWEDC&lt;BR /&gt;DISK$HUBER:[HUBER.util.main]tmp.tmp;1 Ident: HUBER Access: RWEDC</description>
      <pubDate>Fri, 09 Jul 2010 11:48:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247066#M99482</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2010-07-09T11:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify objects that have an ACL.</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247067#M99483</link>
      <description>Information was very helpfull.</description>
      <pubDate>Fri, 09 Jul 2010 18:48:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-identify-objects-that-have-an-acl/m-p/5247067#M99483</guid>
      <dc:creator>djk</dc:creator>
      <dc:date>2010-07-09T18:48:05Z</dc:date>
    </item>
  </channel>
</rss>

