<?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: Urgent: Help with sed command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840997#M91202</link>
    <description>Hi Vivek,&lt;BR /&gt;&lt;BR /&gt;You can try to remove these characters thru vi editor.&lt;BR /&gt;Open the file in vi (vi &lt;FILE name=""&gt;),press colon(:) at colon prompt u enter this string to replace all the occurences of "\r\n" to null(:1,$s/\\r\\n//g).It does global replacement of \r\n to null.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;sudhakar&lt;/FILE&gt;</description>
    <pubDate>Fri, 08 Nov 2002 00:47:17 GMT</pubDate>
    <dc:creator>Sudhakar.J</dc:creator>
    <dc:date>2002-11-08T00:47:17Z</dc:date>
    <item>
      <title>Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840995#M91200</link>
      <description>i need help with sed command. i have to release this ASAP. this is because some user did cut and paste from word. &lt;BR /&gt;&lt;BR /&gt;i have a file with following format.&lt;BR /&gt;&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;&lt;BR /&gt;All the fields are text field. Sometime some of the fields of a line contains "\r \n". this is where problem start. &lt;BR /&gt;&lt;BR /&gt;if any filed contains "\r \n", cause that line to be devided into two lines.&lt;BR /&gt;&lt;BR /&gt;for example field2 of first line contains &lt;BR /&gt;"\r \n" then it looks like that &lt;BR /&gt;we have five lines instead of 4 lines.&lt;BR /&gt;&lt;BR /&gt;field1 field2 &lt;BR /&gt;field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;field1 field2 field3 field4&lt;BR /&gt;&lt;BR /&gt;please help me. i need help to remove "\r \n" from a line. i tried following&lt;BR /&gt;comand but it didn't remove "\n".&lt;BR /&gt;&lt;BR /&gt;sed 's/^V^M//g' filename &amp;gt; newfilename&lt;BR /&gt;&lt;BR /&gt;please help me.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 00:32:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840995#M91200</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T00:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840996#M91201</link>
      <description>Hi Vivek,&lt;BR /&gt;&lt;BR /&gt;You can try to remove these characters thru vi editor.&lt;BR /&gt;Open the file in vi (vi &lt;FILE name=""&gt;),press colon(:) at colon prompt u enter this string to replace all the occurences of "\r\n" (1,$s/\\r\\n//g).It does global replacement of \r\n to null.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;sudhakar&lt;/FILE&gt;</description>
      <pubDate>Fri, 08 Nov 2002 00:46:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840996#M91201</guid>
      <dc:creator>Sudhakar.J</dc:creator>
      <dc:date>2002-11-08T00:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840997#M91202</link>
      <description>Hi Vivek,&lt;BR /&gt;&lt;BR /&gt;You can try to remove these characters thru vi editor.&lt;BR /&gt;Open the file in vi (vi &lt;FILE name=""&gt;),press colon(:) at colon prompt u enter this string to replace all the occurences of "\r\n" to null(:1,$s/\\r\\n//g).It does global replacement of \r\n to null.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;sudhakar&lt;/FILE&gt;</description>
      <pubDate>Fri, 08 Nov 2002 00:47:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840997#M91202</guid>
      <dc:creator>Sudhakar.J</dc:creator>
      <dc:date>2002-11-08T00:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840998#M91203</link>
      <description>Thanks Sudhakar,&lt;BR /&gt;&lt;BR /&gt;sorry for any confusion. actually in the file the is no occurrence of "\r \n" itself. actually what I meant was, there is a carriage return and a line feed character in some of the fields.&lt;BR /&gt;&lt;BR /&gt;if I run following commands &lt;BR /&gt;&lt;BR /&gt;#1&lt;BR /&gt;&amp;gt; cat filename&lt;BR /&gt;field1   adgak field3&lt;BR /&gt;&lt;BR /&gt;#2&lt;BR /&gt;&amp;gt; cat -vet filename&lt;BR /&gt;field1   adgak^m$ field3&lt;BR /&gt;&lt;BR /&gt;Because of this it looks like that there are two lines as following.&lt;BR /&gt;&lt;BR /&gt;field1   adgak&lt;BR /&gt;field3&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if I run following commands it does not solve the problem.&lt;BR /&gt;&lt;BR /&gt;Sed ???s/^M$//g??? filename &amp;gt;newfilename&lt;BR /&gt;&lt;BR /&gt;Or&lt;BR /&gt;&lt;BR /&gt;Sed ???s/^M//g??? filename &amp;gt;newfilename&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any help would be appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 01:06:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840998#M91203</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T01:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840999#M91204</link>
      <description>There could be one solution to my problem. i just thought of it. if we can replace every ocuurence of ^M$ with a special character which will cause current line and next line to be merge.&lt;BR /&gt;&lt;BR /&gt;botom line , is there any way to merge tow line using unix script?&lt;BR /&gt;&lt;BR /&gt;please help me.</description>
      <pubDate>Fri, 08 Nov 2002 01:15:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2840999#M91204</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T01:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841000#M91205</link>
      <description>Try using the tr command.  I'm not at a system right now but I think it would be something like:&lt;BR /&gt;tr -d "\015" &lt;FILE1&gt;file2&lt;BR /&gt;&lt;BR /&gt;That should get rid of the ^M characters.&lt;BR /&gt;&lt;BR /&gt;Darrell&lt;/FILE1&gt;</description>
      <pubDate>Fri, 08 Nov 2002 03:12:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841000#M91205</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-11-08T03:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841001#M91206</link>
      <description>sed '&lt;BR /&gt;# look for "^M" at end of line&lt;BR /&gt;/^M$/{&lt;BR /&gt;#if found, read the next line&lt;BR /&gt;N&lt;BR /&gt;# merge line&lt;BR /&gt;s/^Mn//&lt;BR /&gt;}' filename</description>
      <pubDate>Fri, 08 Nov 2002 03:21:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841001#M91206</guid>
      <dc:creator>Chia-Wei</dc:creator>
      <dc:date>2002-11-08T03:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841002#M91207</link>
      <description>to merge your two lines together try something like this&lt;BR /&gt;&lt;BR /&gt;awk '{if (NF == 4 ) print $0;&lt;BR /&gt;else {&lt;BR /&gt;printf("%s",$0);&lt;BR /&gt;getline&lt;BR /&gt;print $0;&lt;BR /&gt;}&lt;BR /&gt;}'</description>
      <pubDate>Fri, 08 Nov 2002 03:26:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841002#M91207</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2002-11-08T03:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841003#M91208</link>
      <description>Hi&lt;BR /&gt;- to replace a ^M yor are right to use ^V^M (typing Cntr-V Cntr-M)&lt;BR /&gt;- to replace \n you can use standard unix-command cat &lt;FILE&gt; | tr "\012" "x" &lt;BR /&gt;&lt;BR /&gt;Chris&lt;BR /&gt;&lt;/FILE&gt;</description>
      <pubDate>Fri, 08 Nov 2002 06:55:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841003#M91208</guid>
      <dc:creator>Christian Gebhardt</dc:creator>
      <dc:date>2002-11-08T06:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841004#M91209</link>
      <description>tr will do the job :&lt;BR /&gt;oudartj:/home/oudartj/k1 $ more aa&lt;BR /&gt;asasdsdsa&lt;BR /&gt;sdsfdsfdsfds&lt;BR /&gt;&lt;BR /&gt;oudartj:/home/oudartj/k1 $ od -xc aa&lt;BR /&gt;0000000    6173    6173    6473    6473    610d    0a73    6473    6664&lt;BR /&gt;          a   s   a   s   d   s   d   s   a  \r  \n   s   d   s   f   d&lt;BR /&gt;0000020    7366    6473    6664    730d    0a0a&lt;BR /&gt;          s   f   d   s   f   d   s  \r  \n  \n&lt;BR /&gt;0000032&lt;BR /&gt;&lt;BR /&gt;oudartj:/home/oudartj/k1 $ cat aa | tr -d "\r" | od -xc&lt;BR /&gt;0000000    6173    6173    6473    6473    610a    7364    7366    6473&lt;BR /&gt;          a   s   a   s   d   s   d   s   a  \n   s   d   s   f   d   s&lt;BR /&gt;0000020    6664    7366    6473    0a0a&lt;BR /&gt;          f   d   s   f   d   s  \n  \n&lt;BR /&gt;0000030&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 09:09:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841004#M91209</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2002-11-08T09:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841005#M91210</link>
      <description>Thanks,&lt;BR /&gt;&lt;BR /&gt;Nothing helped me. &lt;BR /&gt;&lt;BR /&gt;in my case i have to remove any occurance of "^M$" or "\r\n" from the middle of a line, not from the end of a line.&lt;BR /&gt;&lt;BR /&gt;for example:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat -vet file&lt;BR /&gt;&lt;BR /&gt;abcd efgh^M$&lt;BR /&gt;            ijklmn ghkj 48&lt;BR /&gt;&lt;BR /&gt;i have to remove "^M$" from the middle of line and output should be&lt;BR /&gt;&lt;BR /&gt;abcd efgh ijklmn ghkj 48&lt;BR /&gt;&lt;BR /&gt;so basically we have to merge next line with current line at each occurance of "^M$".&lt;BR /&gt;&lt;BR /&gt;i don't have to delete line feed from the end of file.&lt;BR /&gt;&lt;BR /&gt;please help me.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 18:01:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841005#M91210</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T18:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841006#M91211</link>
      <description>you are getting the ^M at the end of your lines because of the way the file was transfered with ftp to your system.  When you launch ftp type:&lt;BR /&gt;ascii&lt;BR /&gt;to change the transfer mode to text.  This will fix the ^M and the end of each line&lt;BR /&gt;&lt;BR /&gt;as for the /r or \n :&lt;BR /&gt;sed 's/\\r//g' file &amp;gt; file2&lt;BR /&gt;sed 's/\\n//g' file2 &amp;gt; file</description>
      <pubDate>Fri, 08 Nov 2002 18:30:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841006#M91211</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2002-11-08T18:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841007#M91212</link>
      <description>ok - ignore my previous post - i was skimming when i saw the ^M$ comment... &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 18:33:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841007#M91212</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2002-11-08T18:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841008#M91213</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Try:&lt;BR /&gt;&lt;BR /&gt;# dos2ux myfile|awk '{if (NR%2==0) print X$0;X=$0};END{if (NR%2==1) print X}'&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 08 Nov 2002 18:34:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841008#M91213</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-11-08T18:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841009#M91214</link>
      <description>James - how do you get that good  :)&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 18:37:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841009#M91214</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2002-11-08T18:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841010#M91215</link>
      <description>Thanks James,&lt;BR /&gt;&lt;BR /&gt;It seems that your solution may work but it still need some change.&lt;BR /&gt;&lt;BR /&gt;let me explain again:&lt;BR /&gt;&lt;BR /&gt;i have file name "vv2". if run following commands&lt;BR /&gt;&lt;BR /&gt;#1&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat -vet vv2&lt;BR /&gt;&lt;BR /&gt;NASSCAR on Fox. ^M$&lt;BR /&gt;^I ^I^I^INASCAR^I^IY^I48$&lt;BR /&gt;afsdfsdfsd$&lt;BR /&gt;sfs$&lt;BR /&gt;&lt;BR /&gt;explination: it looks like that there are four lines. in fact there are only three line originaly. at the time of data entry user did cut &amp;amp; paste. because of it there is a carriage ruturn after " Fox. " because of this first line is broken into two lines.&lt;BR /&gt;&lt;BR /&gt;what i want is , just remove any occurance "^M$" from the middle of the line so that it will look line as follows.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat -vet vv2&lt;BR /&gt;&lt;BR /&gt;NASSCAR on Fox.  NASCAR^I^IY^I48$&lt;BR /&gt;afsdfsdfsd$&lt;BR /&gt;sfs$ &lt;BR /&gt;&lt;BR /&gt;so as per your suggestion i ran following command&lt;BR /&gt;&amp;gt;  dos2ux vv2 |awk '{if (NR%2==0) print X$0;X=$0};END{if (NR%2==1) print X}' &amp;gt; vv3&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat -vet vv3&lt;BR /&gt;&lt;BR /&gt;NASSCAR on Fox. ^I ^I^I^INASCAR^I^IY^I48$&lt;BR /&gt;afsdfsdfsdsfs$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;the only problem i see is that last two lines are also merged.&lt;BR /&gt;&lt;BR /&gt;please help me.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 18:57:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841010#M91215</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T18:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841011#M91216</link>
      <description>James Please do reply!!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 19:52:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841011#M91216</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T19:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841012#M91217</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Still trying to solve my problem.&lt;BR /&gt;&lt;BR /&gt;at following link i find a solution but it is not working.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.student.northpark.edu/pemente/sed/sed1line.txt" target="_blank"&gt;http://www.student.northpark.edu/pemente/sed/sed1line.txt&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# if a line ends with a backslash, append the next line to it&lt;BR /&gt;&lt;BR /&gt;sed -e :a -e '/\\$/N; s/\\\n//; ta'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;in my case is a line end with ^M$ then remove the ^M$ and append the next line to it. so i tried following and its not working.&lt;BR /&gt;&lt;BR /&gt;sed -e :a -e '/\\^M$; s/\\\n//; ta' filename&lt;BR /&gt;&lt;BR /&gt;actually i know i didn't do anything to remove "^M$" in the above command. it is giving me following error message.&lt;BR /&gt;&lt;BR /&gt;$; s/\\\n//; is not a recognized function.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please help me!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Nov 2002 23:21:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841012#M91217</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-08T23:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841013#M91218</link>
      <description>If u are just trying to remove ^M's from the file then just vi  the file and do&lt;BR /&gt;"%s/^V^M//g" the control key is held down while pressing "V" then "M" and then let go of the control key</description>
      <pubDate>Sat, 09 Nov 2002 06:52:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841013#M91218</guid>
      <dc:creator>Gary Seibak</dc:creator>
      <dc:date>2002-11-09T06:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent: Help with sed command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841014#M91219</link>
      <description>Thanks to all.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Nov 2002 17:23:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/urgent-help-with-sed-command/m-p/2841014#M91219</guid>
      <dc:creator>Vivek_3</dc:creator>
      <dc:date>2002-11-11T17:23:24Z</dc:date>
    </item>
  </channel>
</rss>

