<?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: Viewing tab, white space and other special character in vi editor in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516118#M366451</link>
    <description>&lt;P data-unlink="true"&gt;Hi Shiv:&lt;BR /&gt;&lt;BR /&gt;In lieu of 'vi' it is very convenient to use:&lt;BR /&gt;&lt;BR /&gt;# cat -etv file&lt;BR /&gt;&lt;BR /&gt;Which will list tab characters as '^I'; formfeed characters as '^L'; newline characters as '$'. Other non-printing characters are displayed as defined in the 'ascii(5)' manpages:&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;http://docs.hp.com/en/B2355-60130/ascii.5&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;You can also use 'vis' to see otherwise non-printing characters:&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;http://docs.hp.com/en/B2355-60130/vis.1&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;The 'od' or ('xd') utility is also useful. For example using 'xd -ta file' works nicely with text data.&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;http://docs.hp.com/en/B2355-60130/od.1.html&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/P&gt;</description>
    <pubDate>Tue, 08 Apr 2025 16:26:23 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2025-04-08T16:26:23Z</dc:date>
    <item>
      <title>Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516115#M366448</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I use "set list" command to view extra space at the end of line in vi editor.&lt;BR /&gt;&lt;BR /&gt;How do i view tab, white space, and other special characters in vi editor ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Sun, 18 Oct 2009 19:14:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516115#M366448</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2009-10-18T19:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516116#M366449</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;How's about&lt;BR /&gt;&lt;BR /&gt;nroff -ms file1&lt;BR /&gt;nroff -ms file1 | ssp&lt;BR /&gt;col -b M &amp;lt; file1&lt;BR /&gt;rmnl&lt;BR /&gt;cat file1 | col -b</description>
      <pubDate>Sun, 18 Oct 2009 19:51:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516116#M366449</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2009-10-18T19:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516117#M366450</link>
      <description>Shiv,&lt;BR /&gt;&lt;BR /&gt;vi do not  show all the special or non-printing characters most of times, and depends on version of vi.  &lt;BR /&gt;&lt;BR /&gt;Many versions of vi, ':set list'  causes - &lt;BR /&gt;&lt;TABS&gt;  to show up as ^I &lt;BR /&gt;and &lt;NEWLINES&gt; to be designated by $ . &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You can use 'od -cx' to get specil characters details with hex output (#cat filename | od -cx " ,  or cat -v  to see  the special characters.&lt;BR /&gt;&lt;BR /&gt;And also you can try using vim or emcs ,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hth,&lt;BR /&gt;Raj.&lt;/NEWLINES&gt;&lt;/TABS&gt;</description>
      <pubDate>Sun, 18 Oct 2009 20:34:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516117#M366450</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-10-18T20:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516118#M366451</link>
      <description>&lt;P data-unlink="true"&gt;Hi Shiv:&lt;BR /&gt;&lt;BR /&gt;In lieu of 'vi' it is very convenient to use:&lt;BR /&gt;&lt;BR /&gt;# cat -etv file&lt;BR /&gt;&lt;BR /&gt;Which will list tab characters as '^I'; formfeed characters as '^L'; newline characters as '$'. Other non-printing characters are displayed as defined in the 'ascii(5)' manpages:&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;http://docs.hp.com/en/B2355-60130/ascii.5&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;You can also use 'vis' to see otherwise non-printing characters:&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;http://docs.hp.com/en/B2355-60130/vis.1&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;The 'od' or ('xd') utility is also useful. For example using 'xd -ta file' works nicely with text data.&lt;BR /&gt;&lt;BR /&gt;&lt;STRIKE&gt;http://docs.hp.com/en/B2355-60130/od.1.html&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Admin&lt;/STRONG&gt; [above link is no longer valid, please visit&amp;nbsp;&lt;A href="https://support.hpe.com/connect/s/" target="_blank" rel="noopener"&gt;https://support.hpe.com/connect/s/&lt;/A&gt; ]&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 16:26:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516118#M366451</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2025-04-08T16:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516119#M366452</link>
      <description>HI,.&lt;BR /&gt;I used to do :se list in vi command prompt after you can see lots of special characters &lt;BR /&gt;&lt;BR /&gt;Tab characters as '^I'; &lt;BR /&gt;Newline characters as '$'.&lt;BR /&gt;&lt;BR /&gt;to come out from this use se nolist&lt;BR /&gt;Suraj</description>
      <pubDate>Mon, 19 Oct 2009 01:01:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516119#M366452</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-10-19T01:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516120#M366453</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;The only command in vi to list characters like tab, carriage return etc is "set list" &lt;BR /&gt;&lt;BR /&gt;See full options at :&lt;BR /&gt;&lt;A href="http://www.yolinux.com/TUTORIALS/LinuxTutorialAdvanced_vi.html" target="_blank"&gt;http://www.yolinux.com/TUTORIALS/LinuxTutorialAdvanced_vi.html&lt;/A&gt;</description>
      <pubDate>Mon, 19 Oct 2009 01:49:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516120#M366453</guid>
      <dc:creator>Viveki</dc:creator>
      <dc:date>2009-10-19T01:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Viewing tab, white space and other special character in vi editor</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516121#M366454</link>
      <description>&amp;gt;How do I view tab, white space, and other special characters in vi editor?&lt;BR /&gt;&lt;BR /&gt;The same way, :set list&lt;BR /&gt;&lt;BR /&gt;vis(1) also has several options for special chars.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Raj: You can use 'od -cx' to get special characters details with hex output&lt;BR /&gt;&lt;BR /&gt;If you really want hex, you should use xd(1).</description>
      <pubDate>Mon, 19 Oct 2009 03:50:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/viewing-tab-white-space-and-other-special-character-in-vi-editor/m-p/4516121#M366454</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-10-19T03:50:04Z</dc:date>
    </item>
  </channel>
</rss>

