<?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 need help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446742#M9579</link>
    <description>Please tell me how to write a shell script to find all users on my system whose user id are greater than 99.&lt;BR /&gt;&lt;BR /&gt;Thanks for all your help,&lt;BR /&gt;Sanjit</description>
    <pubDate>Wed, 20 Sep 2000 16:09:27 GMT</pubDate>
    <dc:creator>sanjit</dc:creator>
    <dc:date>2000-09-20T16:09:27Z</dc:date>
    <item>
      <title>need help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446742#M9579</link>
      <description>Please tell me how to write a shell script to find all users on my system whose user id are greater than 99.&lt;BR /&gt;&lt;BR /&gt;Thanks for all your help,&lt;BR /&gt;Sanjit</description>
      <pubDate>Wed, 20 Sep 2000 16:09:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446742#M9579</guid>
      <dc:creator>sanjit</dc:creator>
      <dc:date>2000-09-20T16:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446743#M9580</link>
      <description>This will work for you:&lt;BR /&gt;&lt;BR /&gt;cat /etc/passwd | awk -F: '{if (($3 &amp;gt; 98)) print $1}'&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Sep 2000 16:20:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446743#M9580</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-09-20T16:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446744#M9581</link>
      <description>Whoops, change the 98 to a 99.&lt;BR /&gt;&lt;BR /&gt;Checking the UID field for UIDs that are greater than 99. If true, then print the $LOGNAME of the corresponding UIDs. The print $1 at the end can be modified to print $0 if you want to see the entire line for the output that matches the awk condition.</description>
      <pubDate>Wed, 20 Sep 2000 16:23:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446744#M9581</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2000-09-20T16:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: need help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446745#M9582</link>
      <description>try this:&lt;BR /&gt;&lt;BR /&gt;cat /etc/passwd| awk 'BEGIN {FS = ":"} {if $3 &amp;gt; 99 ) print "username="$1 " " "UID=" $3}'&lt;BR /&gt;&lt;BR /&gt;Federico</description>
      <pubDate>Thu, 21 Sep 2000 06:20:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help/m-p/2446745#M9582</guid>
      <dc:creator>federico_3</dc:creator>
      <dc:date>2000-09-21T06:20:31Z</dc:date>
    </item>
  </channel>
</rss>

