<?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: Remove ^I, ^L in file in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103688#M92491</link>
    <description>You can also use vi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;:g/^L/s///&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ctrl-l has to be entered with the key strokes:&lt;BR /&gt;&lt;BR /&gt;ctrl-v followed by ctrl-l&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
    <pubDate>Thu, 15 Nov 2007 21:01:20 GMT</pubDate>
    <dc:creator>Geoff Wild</dc:creator>
    <dc:date>2007-11-15T21:01:20Z</dc:date>
    <item>
      <title>Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103684#M92487</link>
      <description>Hi.&lt;BR /&gt;Please your help.&lt;BR /&gt;&lt;BR /&gt;I have a file and I do want to remove him these symbols ^I, ^L like I make?&lt;BR /&gt;&lt;BR /&gt;Thanks very much.&lt;BR /&gt;With the command sed i used this,&lt;BR /&gt;sed '$d' file1  &amp;gt; file2&lt;BR /&gt;thinking in that the symbol was at the end of the file  &lt;BR /&gt;but it should not always be this way. it is better than it validates in the whole file.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Nov 2007 14:47:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103684#M92487</guid>
      <dc:creator>Paola Guizado</dc:creator>
      <dc:date>2007-11-15T14:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103685#M92488</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;# perl -ple 's%\011%%g;s%\014%%g' file&lt;BR /&gt;&lt;BR /&gt;The ^I is a horizonal tab;  The ^L is a formfeed.  See the manpages for 'ascii(5)'.&lt;BR /&gt;&lt;BR /&gt;By the way, please evaluate and assign points to the responses to your previous question:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1177271" target="_blank"&gt;https://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1177271&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;See:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 15 Nov 2007 15:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103685#M92488</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-11-15T15:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103686#M92489</link>
      <description>&lt;!--!*#--&gt;Hi (again):&lt;BR /&gt;&lt;BR /&gt;If you prefer, you could also use the control keys and letters (Ctrl-I and Ctrl-L) to compose a 'sed' substitution:&lt;BR /&gt;&lt;BR /&gt;# sed -e 's/    //g' -e 's/^L//g'&lt;BR /&gt;&lt;BR /&gt;Note that the tab character composed as CTRL-I will appear as whitespace in this post.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Nov 2007 16:51:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103686#M92489</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-11-15T16:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103687#M92490</link>
      <description># tr -s '\011\014' '  ' &amp;lt; file</description>
      <pubDate>Thu, 15 Nov 2007 16:52:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103687#M92490</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2007-11-15T16:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103688#M92491</link>
      <description>You can also use vi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;:g/^L/s///&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ctrl-l has to be entered with the key strokes:&lt;BR /&gt;&lt;BR /&gt;ctrl-v followed by ctrl-l&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 15 Nov 2007 21:01:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103688#M92491</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2007-11-15T21:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ^I, ^L in file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103689#M92492</link>
      <description>Hi,&lt;BR /&gt;you can use strings ,file&amp;gt; to remove any control chars from your file.&lt;BR /&gt;Just my .02$.&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Mon, 19 Nov 2007 04:10:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/remove-i-l-in-file/m-p/4103689#M92492</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2007-11-19T04:10:45Z</dc:date>
    </item>
  </channel>
</rss>

