<?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: From command line, can I find out which patches are superseded by a given patch? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777576#M76405</link>
    <description>Yes, you can:&lt;BR /&gt;&lt;BR /&gt;swlist -v -l fileset &amp;gt; /tmp/swlist.report&lt;BR /&gt;&lt;BR /&gt;view /tmp/swlist.report&lt;BR /&gt;&lt;BR /&gt;Use the "search" feature of view, when you find that patch, scroll up and down, you will find the related details info.&lt;BR /&gt;</description>
    <pubDate>Thu, 01 Aug 2002 12:38:40 GMT</pubDate>
    <dc:creator>Victor_5</dc:creator>
    <dc:date>2002-08-01T12:38:40Z</dc:date>
    <item>
      <title>From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777575#M76404</link>
      <description>&lt;BR /&gt;From command line, can I find out which patches are superseded by a given patch?&lt;BR /&gt;&lt;BR /&gt;For example, a DBA wants patch PHCO_23441.  That patch has never been installed, but a patch that supersedes it (PHSS_26263) has.  Right now, I have to manually search through ITRC and compare README files to what I have installed on the system.  Ideally I'd like to only have to run a command that tells me what patches have been superseded by PHSS_26263.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:35:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777575#M76404</guid>
      <dc:creator>Doug Kratky</dc:creator>
      <dc:date>2002-08-01T12:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777576#M76405</link>
      <description>Yes, you can:&lt;BR /&gt;&lt;BR /&gt;swlist -v -l fileset &amp;gt; /tmp/swlist.report&lt;BR /&gt;&lt;BR /&gt;view /tmp/swlist.report&lt;BR /&gt;&lt;BR /&gt;Use the "search" feature of view, when you find that patch, scroll up and down, you will find the related details info.&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:38:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777576#M76405</guid>
      <dc:creator>Victor_5</dc:creator>
      <dc:date>2002-08-01T12:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777577#M76406</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;swlist -l fileset -a title -a revision -a state -a patch_state -a superseded_by&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This will cover the system and give you it all&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;            Steve Steel</description>
      <pubDate>Thu, 01 Aug 2002 12:39:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777577#M76406</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-08-01T12:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777578#M76407</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;swlist -v -l fileset |grep PH| grep superseded &lt;BR /&gt;&lt;BR /&gt;And add on the end another | grep PHSS_26263&lt;BR /&gt;&lt;BR /&gt;To list all those patches superceeded by it.&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:41:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777578#M76407</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-08-01T12:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777579#M76408</link>
      <description>Try &lt;BR /&gt;swlist -l patch -a install_date | more&lt;BR /&gt;(attention on sort)&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Thu, 01 Aug 2002 12:42:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777579#M76408</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-08-01T12:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777580#M76409</link>
      <description>&lt;BR /&gt;Anyway, if your DBA is asking you to install a superseded patch then tell me not to be stupid - its already been replaced by a more uptodate patch from HP.&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:45:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777580#M76409</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-08-01T12:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777581#M76410</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;This will do the task:&lt;BR /&gt;# swlist -v -l fileset | grep PHSS_26263&lt;BR /&gt;&lt;BR /&gt;If needed, add another grep for 'supersedes'</description>
      <pubDate>Thu, 01 Aug 2002 12:46:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777581#M76410</guid>
      <dc:creator>Sajid_1</dc:creator>
      <dc:date>2002-08-01T12:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777582#M76411</link>
      <description>You can also do&lt;BR /&gt;&lt;BR /&gt;cd /var/adm/sw/products/&lt;YOUR_PATCH_ID&gt;&lt;BR /&gt;grep supersedes */INDEX | sort -u&lt;BR /&gt;&lt;BR /&gt;eg:&lt;BR /&gt;&lt;BR /&gt;cd /var/adm/sw/products/PHSS_19866&lt;BR /&gt;grep supercedes */INDEX | sort -u&lt;BR /&gt;&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_13415.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_14245.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_14580.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_15252.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_15316.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_16181.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_16404.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_16540.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_16841.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_17571.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_17825.C-ENG-A-MAN,fr=*&lt;BR /&gt;C-ENG-A-MAN/INDEX:supersedes PHSS_18072.C-ENG-A-MAN,fr=*&lt;BR /&gt;&lt;BR /&gt;Chris&lt;/YOUR_PATCH_ID&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:49:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777582#M76411</guid>
      <dc:creator>Chris Wilshaw</dc:creator>
      <dc:date>2002-08-01T12:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: From command line, can I find out which patches are superseded by a given patch?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777583#M76412</link>
      <description>&lt;BR /&gt;Thanks for the qucik help!  The "swlist -v -l fileset" was exactly what I needed.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Aug 2002 12:56:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/from-command-line-can-i-find-out-which-patches-are-superseded-by/m-p/2777583#M76412</guid>
      <dc:creator>Doug Kratky</dc:creator>
      <dc:date>2002-08-01T12:56:30Z</dc:date>
    </item>
  </channel>
</rss>

