<?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: Chmod in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844071#M393569</link>
    <description>Hi Jeffrey,&lt;BR /&gt;&lt;BR /&gt;You must execute:&lt;BR /&gt;&lt;BR /&gt;find /hp3070/boards/*/analog -exec chmod 775 {} \;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Manuel&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 05 Apr 2001 11:33:52 GMT</pubDate>
    <dc:creator>Manuel Plaza</dc:creator>
    <dc:date>2001-04-05T11:33:52Z</dc:date>
    <item>
      <title>Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844070#M393568</link>
      <description>I have a directory hp3070/boards&lt;BR /&gt;The boards directory has items like&lt;BR /&gt;724781&lt;BR /&gt;724782&lt;BR /&gt;&lt;BR /&gt;In each of the 724xxx directories are other directories and files. The directories I am interested in are the analog, digital, fixture, and mixed. Let's say I need to modify the analog directory in each of the 724xxx directories. Would the path be /hp3070/boards/*/analog? If the path is correct can u also uses chmod and have, &lt;BR /&gt;find /hp3070/boards/*/analog  | chmod 775 *&lt;BR /&gt;&lt;BR /&gt;I have been trying to use the find command and now thinking I may need to use the grep command. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 11:25:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844070#M393568</guid>
      <dc:creator>Jeffrey W. Stewart</dc:creator>
      <dc:date>2001-04-05T11:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844071#M393569</link>
      <description>Hi Jeffrey,&lt;BR /&gt;&lt;BR /&gt;You must execute:&lt;BR /&gt;&lt;BR /&gt;find /hp3070/boards/*/analog -exec chmod 775 {} \;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Manuel&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 11:33:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844071#M393569</guid>
      <dc:creator>Manuel Plaza</dc:creator>
      <dc:date>2001-04-05T11:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844072#M393570</link>
      <description>I would use:&lt;BR /&gt;&lt;BR /&gt;find /hp3070/boards -type d -name analog | xargs chmod 755&lt;BR /&gt;&lt;BR /&gt;This will search trough your directory findign all directories (-type d) with the name analog. The resutlign list is piped to chmod with the xargs command.&lt;BR /&gt;&lt;BR /&gt;This will set the permissions to 755 to all directories called analog. If you need to change the permissions for files and directories under this analog directory you have to use chmod -R.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Thu, 05 Apr 2001 12:04:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844072#M393570</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2001-04-05T12:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844073#M393571</link>
      <description>It's easy:&lt;BR /&gt;chmod -R 775 /hp3070/boards/*/analog&lt;BR /&gt;&lt;BR /&gt;this will change every directory, and sub-directories, under analog (included).&lt;BR /&gt;good luck.</description>
      <pubDate>Thu, 05 Apr 2001 12:17:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844073#M393571</guid>
      <dc:creator>Pedro Sousa</dc:creator>
      <dc:date>2001-04-05T12:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844074#M393572</link>
      <description>ll /hp3070/boards/*/analog|awk ' {print $9}'|xargs chmod 755 &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 13:20:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844074#M393572</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-04-05T13:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844075#M393573</link>
      <description>If you want to chmod all files and directorys down :be &lt;BR /&gt;&lt;BR /&gt;chmod -R /hp3070/boards/*/analog&lt;BR /&gt;&lt;BR /&gt;If you want to chmos only directorys then you need to use find:&lt;BR /&gt;&lt;BR /&gt;find /hp3070/boards/*/analog  -type d  | xargs chmod 755 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pedro: I was skiped yuor replay, but as i had wrote mine yet ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Apr 2001 14:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844075#M393573</guid>
      <dc:creator>Carlos Fernandez Riera</dc:creator>
      <dc:date>2001-04-05T14:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Chmod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844076#M393574</link>
      <description>Solution in thread</description>
      <pubDate>Wed, 05 Jan 2005 10:14:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chmod/m-p/4844076#M393574</guid>
      <dc:creator>Jeffrey W. Stewart</dc:creator>
      <dc:date>2005-01-05T10:14:06Z</dc:date>
    </item>
  </channel>
</rss>

