<?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: delete one line in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530274#M868664</link>
    <description>Another way of doing it:&lt;BR /&gt;&lt;BR /&gt;tail +2 file.in &amp;gt; file.out</description>
    <pubDate>Fri, 18 May 2001 18:09:31 GMT</pubDate>
    <dc:creator>Mladen Despic</dc:creator>
    <dc:date>2001-05-18T18:09:31Z</dc:date>
    <item>
      <title>delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530269#M868653</link>
      <description>hi, i want to delete only the first line in a file (c-shell script). if i try it with sed, it deletes all lines :( what is the solution? thanx for help</description>
      <pubDate>Fri, 18 May 2001 15:00:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530269#M868653</guid>
      <dc:creator>Maurice Skubski</dc:creator>
      <dc:date>2001-05-18T15:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530270#M868655</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;# sed 1d file.in &amp;gt; file.out&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 18 May 2001 15:11:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530270#M868655</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-05-18T15:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530271#M868658</link>
      <description>Edit the file in vi&lt;BR /&gt;:1,d</description>
      <pubDate>Fri, 18 May 2001 15:15:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530271#M868658</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-05-18T15:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530272#M868660</link>
      <description>$ cat test           &lt;BR /&gt;#! /bin/sh           &lt;BR /&gt;echo "hello world"   &lt;BR /&gt;echo "bye ..."       &lt;BR /&gt;&lt;BR /&gt;$ sed 1d test &amp;gt; test2&lt;BR /&gt;&lt;BR /&gt;$ cat test2&lt;BR /&gt;echo "hello world"&lt;BR /&gt;echo "bye ..."&lt;BR /&gt;&lt;BR /&gt;- fnhalili</description>
      <pubDate>Fri, 18 May 2001 15:29:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530272#M868660</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2001-05-18T15:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530273#M868662</link>
      <description>Hi, try this :&lt;BR /&gt;&lt;BR /&gt;sed 1d [file] &amp;gt; [outputfile]&lt;BR /&gt;mv [outputfile] [file]&lt;BR /&gt;&lt;BR /&gt;I holp help you&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Abel Berger &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 May 2001 15:48:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530273#M868662</guid>
      <dc:creator>Abel Berger</dc:creator>
      <dc:date>2001-05-18T15:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530274#M868664</link>
      <description>Another way of doing it:&lt;BR /&gt;&lt;BR /&gt;tail +2 file.in &amp;gt; file.out</description>
      <pubDate>Fri, 18 May 2001 18:09:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530274#M868664</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2001-05-18T18:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: delete one line</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530275#M868666</link>
      <description>Hey,&lt;BR /&gt;&lt;BR /&gt;One more way.&lt;BR /&gt;awk 'NR&amp;gt;1{print $0}' file.in &amp;gt;file.out&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards&lt;BR /&gt;Deepak&lt;BR /&gt;</description>
      <pubDate>Sun, 20 May 2001 12:52:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/delete-one-line/m-p/2530275#M868666</guid>
      <dc:creator>Deepak_5</dc:creator>
      <dc:date>2001-05-20T12:52:58Z</dc:date>
    </item>
  </channel>
</rss>

