<?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: File splitter/compression in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693398#M842869</link>
    <description>Sorry, one more thing... to restore the split files back then do this :&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat x* &amp;gt; &lt;ORIGINALFILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;In our example:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat x* &amp;gt; test.ksh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Shabu&lt;/ORIGINALFILENAME&gt;</description>
    <pubDate>Thu, 28 Mar 2002 23:34:27 GMT</pubDate>
    <dc:creator>SHABU KHAN</dc:creator>
    <dc:date>2002-03-28T23:34:27Z</dc:date>
    <item>
      <title>File splitter/compression</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693396#M842867</link>
      <description>I am looking for a hpux tool that does file compression and splits the file into a number of smaller files. Can anyone help?</description>
      <pubDate>Thu, 28 Mar 2002 23:19:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693396#M842867</guid>
      <dc:creator>mckiers</dc:creator>
      <dc:date>2002-03-28T23:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: File splitter/compression</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693397#M842868</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The split command will split files.. for example:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;ls -l test.ksh&lt;BR /&gt;-rwxr-xr-x   1 skhan   sysadmin     464 Mar 27 15:51 test.ksh&lt;BR /&gt;&lt;BR /&gt;This file has 464 bytes, if you would like to split this into two then:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;split -b 232 test.ksh&lt;BR /&gt;&lt;BR /&gt;will split the files into (the filenames will be xaa, xbb etc..):&lt;BR /&gt;&amp;gt;ls -la xa*&lt;BR /&gt;-rw-r--r--   1 sxkhan   sysadmin     232 Mar 28 15:29 xaa&lt;BR /&gt;-rw-r--r--   1 sxkhan   sysadmin     232 Mar 28 15:29 xab&lt;BR /&gt;&lt;BR /&gt;If you want to compress the file, then:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;compresss test.ksh&lt;BR /&gt;-rwxr-xr-x   1 sxkhan   sysadmin     329 Mar 27 15:51 test.ksh.Z&lt;BR /&gt;&lt;BR /&gt;To uncompress:&lt;BR /&gt;uncompress test.ksh.Z&lt;BR /&gt;-rwxr-xr-x   1 skhan   sysadmin     464 Mar 27 15:51 test.ksh&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;-Shabu&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Mar 2002 23:30:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693397#M842868</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-03-28T23:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: File splitter/compression</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693398#M842869</link>
      <description>Sorry, one more thing... to restore the split files back then do this :&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat x* &amp;gt; &lt;ORIGINALFILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;In our example:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat x* &amp;gt; test.ksh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Shabu&lt;/ORIGINALFILENAME&gt;</description>
      <pubDate>Thu, 28 Mar 2002 23:34:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693398#M842869</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-03-28T23:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: File splitter/compression</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693399#M842870</link>
      <description>I like to use a combination of gzip / gunzip and split.&lt;BR /&gt;&lt;BR /&gt;To compress &amp;amp; split:&lt;BR /&gt;gzip &lt;FILENAME&gt;&lt;BR /&gt;split &lt;FILENAME&gt;.gz&lt;BR /&gt;&lt;BR /&gt;To consolidate and uncompress:&lt;BR /&gt;cat x* &amp;gt; &lt;FILENAME&gt;.gz&lt;BR /&gt;gunzip &lt;FILENAME&gt;.gz&lt;BR /&gt;&lt;BR /&gt;See the man pages of gzip and split for details.&lt;/FILENAME&gt;&lt;/FILENAME&gt;&lt;/FILENAME&gt;&lt;/FILENAME&gt;</description>
      <pubDate>Fri, 29 Mar 2002 01:16:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-splitter-compression/m-p/2693399#M842870</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2002-03-29T01:16:06Z</dc:date>
    </item>
  </channel>
</rss>

