<?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: transferring binary from windows to hpux in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719773#M252570</link>
    <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;If you want to remove ^M from your files, &lt;BR /&gt;&lt;BR /&gt;Using Perl :&lt;BR /&gt;    Following command will change the orginal file itself so keep a backup copy .&lt;BR /&gt;&lt;BR /&gt;    perl -pi -e "s:^V^M::g" existing_file_name&lt;BR /&gt;&lt;BR /&gt;    You won't see the Control V on typing but it is needed to generate control&lt;BR /&gt;&lt;BR /&gt;    character ^M.&lt;BR /&gt;&lt;BR /&gt;Using sed :&lt;BR /&gt;    sed -e `s/^V^M//g` existing_file_name &amp;gt; new_file_name&lt;BR /&gt;&lt;BR /&gt;Using vi :&lt;BR /&gt;    Open file in vi and enter the following at : prompt in command mode .&lt;BR /&gt;&lt;BR /&gt;    :%s/^V^M//g&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.adminschoice.com/docs/techtips.htm#Removing%20" target="_blank"&gt;http://www.adminschoice.com/docs/techtips.htm#Removing%20&lt;/A&gt;^M%20from%20unix%20text%20files&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
    <pubDate>Mon, 30 Jan 2006 01:24:05 GMT</pubDate>
    <dc:creator>Arunvijai_4</dc:creator>
    <dc:date>2006-01-30T01:24:05Z</dc:date>
    <item>
      <title>transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719763#M252560</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;When an ascii file is transferred to hpux; sometime i have seen ^M characters at the end of the line on hpux.&lt;BR /&gt;&lt;BR /&gt;If binary file is transferred via ftp in bin mode from windows to hpux then do i need to take care of anything ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Jan 2006 19:18:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719763#M252560</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2006-01-29T19:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719764#M252561</link>
      <description>If your file is binary and you ftping to the Hpux in binary mode then you don't have to do anything on the hpux side as it will transfer as a binary file if you want to make sure you can type bin at the ftp prompt to make sure you are in binary mode.</description>
      <pubDate>Sun, 29 Jan 2006 19:35:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719764#M252561</guid>
      <dc:creator>Deoncia Grayson_1</dc:creator>
      <dc:date>2006-01-29T19:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719765#M252562</link>
      <description>Actually, my question is ascii on windows and unix are different.&lt;BR /&gt;&lt;BR /&gt;is binary also different ?&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Jan 2006 19:53:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719765#M252562</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2006-01-29T19:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719766#M252563</link>
      <description>Actually, my question is ascii on windows and unix are different.&lt;BR /&gt;&lt;BR /&gt;is binary also different ? &lt;BR /&gt;&lt;BR /&gt;If no; then how come binary files has been made platform independent ?&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Jan 2006 19:54:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719766#M252563</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2006-01-29T19:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719767#M252564</link>
      <description>Hi SHiv:&lt;BR /&gt;&lt;BR /&gt;THe "^M" character you see is the graphic representation of a carriage-return character.&lt;BR /&gt;&lt;BR /&gt;Unix uses a newline (linefeed) character to denote the end of a line.  Windows uses a linefeed plus carriage return couplet to do the same.&lt;BR /&gt;&lt;BR /&gt;When you specify an ASCII mode FTP transfer, the conversion to add or delete a carriage return character occurs automatically.  Binary mode transfers are transparent transfers.  Octets are transfered "as is" and nothing is added nor deleted.&lt;BR /&gt;&lt;BR /&gt;If you find that you have a file in the wrong mode, you can use 'dos2ux' or 'ux2dos' to strip or add the carriage return character.  See the man pages for 'dox2ux' for more information.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sun, 29 Jan 2006 19:56:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719767#M252564</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-01-29T19:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719768#M252565</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;DOS text files traditionally have carriage return and line feed  pairs  as  their  newline characters while Unix text files have the  line  feed  as  their  newline  character. So you get ^M when you transfer windows to Unix in ASCII mode. &lt;BR /&gt;&lt;BR /&gt;-Arun &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Jan 2006 23:36:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719768#M252565</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-29T23:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719769#M252566</link>
      <description>hi shiv,&lt;BR /&gt;&lt;BR /&gt;The ASCII code is a standardized computer code which corresponds every letter, number, punctuation mark, etc. to a number between 0 and 255. This is the way computers store text files: each character in the file corresponds to a byte (8 bits, 2^8 = 256 possible combinations).&lt;BR /&gt;&lt;BR /&gt;The line feed (LF) has ASCII code 10, and the carriage return (CR) has ASCII code 13. When computers first proliferated, there was some debate over how the end of lines should be stored in the file. To this day, UNIX systems use only the LF, while DOS systems use CRLF. &lt;BR /&gt;&lt;BR /&gt;That is, if your file looks like this:&lt;BR /&gt;&lt;BR /&gt;he&lt;BR /&gt;llo&lt;BR /&gt;&lt;BR /&gt;UNIX would store this file as: 104 - 101 - 10 - 108 - 108 - 111&lt;BR /&gt;while Windows would store this file as: 104 - 101 - 13 - 10 - 108 - 108 - 111.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Sun, 29 Jan 2006 23:47:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719769#M252566</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2006-01-29T23:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719770#M252567</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;The problem is caused when a binary file ( eg: shar file) is downloaded to a pc.  The pc&lt;BR /&gt;places&lt;BR /&gt;pc style end of lines in the file.  The ^M is a visual representation of&lt;BR /&gt;the line feed not needed on unix.  You can fix this by doing the&lt;BR /&gt;following:&lt;BR /&gt;&lt;BR /&gt;# dos2ux sharfile &amp;gt; sharfile1&lt;BR /&gt;# sh sharfile1&lt;BR /&gt;x - README [compressed]&lt;BR /&gt;x - install.ksh [compressed]&lt;BR /&gt;x - inquiry256.1m [compressed]&lt;BR /&gt;x - inquiry256.ksh [compressed]&lt;BR /&gt;x - inquiry256 [compressed]&lt;BR /&gt;&lt;BR /&gt;Hope these informations will help you..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Shameer</description>
      <pubDate>Mon, 30 Jan 2006 00:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719770#M252567</guid>
      <dc:creator>Shameer.V.A</dc:creator>
      <dc:date>2006-01-30T00:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719771#M252568</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;You asked about "If binary file is transferred via ftp in bin mode from windows to hpux then do i need to take care of anything ?" &lt;BR /&gt;&lt;BR /&gt;No, "bin" mode is fine for binary files. You dont need to take care of anything except checksum value. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 30 Jan 2006 00:32:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719771#M252568</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-30T00:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719772#M252569</link>
      <description>Problem is becuase of file format encoding. If you are getting ^M characters then file is in DOS format. To convert that use as,&lt;BR /&gt;&lt;BR /&gt;# dos2ux &lt;FILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;Use binary mode with ftp when transfer files between two different platforms.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/FILENAME&gt;</description>
      <pubDate>Mon, 30 Jan 2006 01:19:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719772#M252569</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-01-30T01:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719773#M252570</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;If you want to remove ^M from your files, &lt;BR /&gt;&lt;BR /&gt;Using Perl :&lt;BR /&gt;    Following command will change the orginal file itself so keep a backup copy .&lt;BR /&gt;&lt;BR /&gt;    perl -pi -e "s:^V^M::g" existing_file_name&lt;BR /&gt;&lt;BR /&gt;    You won't see the Control V on typing but it is needed to generate control&lt;BR /&gt;&lt;BR /&gt;    character ^M.&lt;BR /&gt;&lt;BR /&gt;Using sed :&lt;BR /&gt;    sed -e `s/^V^M//g` existing_file_name &amp;gt; new_file_name&lt;BR /&gt;&lt;BR /&gt;Using vi :&lt;BR /&gt;    Open file in vi and enter the following at : prompt in command mode .&lt;BR /&gt;&lt;BR /&gt;    :%s/^V^M//g&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.adminschoice.com/docs/techtips.htm#Removing%20" target="_blank"&gt;http://www.adminschoice.com/docs/techtips.htm#Removing%20&lt;/A&gt;^M%20from%20unix%20text%20files&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 30 Jan 2006 01:24:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719773#M252570</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-30T01:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719774#M252571</link>
      <description>Are there different types of binaries or all binaries are same ?</description>
      <pubDate>Mon, 30 Jan 2006 01:45:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719774#M252571</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2006-01-30T01:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719775#M252572</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;You asked "Are there different types of binaries or all binaries are same ?" &lt;BR /&gt;&lt;BR /&gt;Binaries are executable files and it differs from Windows to HP-UX. Generally, Windows binaries will have .exe extension and in Unix, there is no concept of extension. &lt;BR /&gt;&lt;BR /&gt;Hope this is clear. &lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 30 Jan 2006 01:50:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719775#M252572</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-30T01:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719776#M252573</link>
      <description>My question was with respect to WebServer SSL certificate files which we consider as binary files. I was wondering the binaries which are created by compiling programs are different in what respect to the certificate files.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shiv</description>
      <pubDate>Mon, 30 Jan 2006 02:02:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719776#M252573</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2006-01-30T02:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719777#M252574</link>
      <description>Shiv,&lt;BR /&gt;&lt;BR /&gt;Bin files are categorised as one and same for for FTP's.&lt;BR /&gt;&lt;BR /&gt;to prevent you can either use a dos2unix.&lt;BR /&gt;&lt;BR /&gt;also your ftp can do mget/mput &lt;BR /&gt;&lt;BR /&gt;finally use "bin" at the ftp prompt before going for transfer.&lt;BR /&gt;&lt;BR /&gt;Chan</description>
      <pubDate>Mon, 30 Jan 2006 05:40:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719777#M252574</guid>
      <dc:creator>Chan 007</dc:creator>
      <dc:date>2006-01-30T05:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719778#M252575</link>
      <description>WebServer SSL certificate files which we consider as binary files. I was wondering the binaries which are created by compiling programs are different in what respect to the certificate files&lt;BR /&gt;&lt;BR /&gt;--&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Yes, During the transfer of the SSL certificate file it will be trasfered with same DOS encoding. So ^M characters are existing. &lt;BR /&gt;&lt;BR /&gt;Best way is to transfer with bin mode as,&lt;BR /&gt;&lt;BR /&gt;ftp &lt;HOSTNAME&gt;&lt;BR /&gt;ftp&amp;gt; bin&lt;BR /&gt;ftp&amp;gt; start other commands&lt;BR /&gt;&lt;BR /&gt;FTP will not care about whether it is text or executable. It will be based on mode.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/HOSTNAME&gt;</description>
      <pubDate>Mon, 30 Jan 2006 05:48:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719778#M252575</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-01-30T05:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719779#M252576</link>
      <description>Lots of methods are there to remove ^M character. &lt;BR /&gt;&lt;BR /&gt;Simply,&lt;BR /&gt;&lt;BR /&gt;a) dos2ux &lt;FILENAME&gt; will make it.&lt;BR /&gt;&lt;BR /&gt;More methods,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=364956" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=364956&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu&lt;/FILENAME&gt;</description>
      <pubDate>Mon, 30 Jan 2006 05:51:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719779#M252576</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-01-30T05:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719780#M252577</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;Your question: "Are there different types of binaries or all binaries are same ?"&lt;BR /&gt;&lt;BR /&gt;Yes. Binaries are per platform in most cases. E.g. Windows binaries is not the same as HP-UX binaries is not the same as Linux binaries.&lt;BR /&gt;&lt;BR /&gt;When source codes are compiled they produce binary files which are linked to libraries and other procedures that dependent on the environment/platform.&lt;BR /&gt;&lt;BR /&gt;Exception Java "binaries" (bundled as jar files) that are supposed to be platform independent.&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Mon, 30 Jan 2006 05:51:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719780#M252577</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2006-01-30T05:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719781#M252578</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;You asked about " My question was with respect to WebServer SSL certificate files which we consider as binary files. I was wondering the binaries which are created by compiling programs are different in what respect to the certificate files".&lt;BR /&gt;&lt;BR /&gt;When you transfer webserver certificate from Windows to unix in ASCII mode, you will get ^M in certificate, To avoid this, you can transfer in bin mode. &lt;BR /&gt;&lt;BR /&gt;ftp&amp;gt; bin&lt;BR /&gt;200 Type set to I.&lt;BR /&gt;ftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 30 Jan 2006 05:56:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719781#M252578</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-30T05:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: transferring binary from windows to hpux</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719782#M252579</link>
      <description>Hi Shiv, &lt;BR /&gt;&lt;BR /&gt;You can simply use, &lt;BR /&gt;# tr -d '\015' filename&lt;BR /&gt;&lt;BR /&gt;# tr -d '\r' &lt;OLD.FILE&gt;new.file&lt;BR /&gt;&lt;BR /&gt;-Arun&lt;/OLD.FILE&gt;</description>
      <pubDate>Mon, 30 Jan 2006 06:00:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transferring-binary-from-windows-to-hpux/m-p/3719782#M252579</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-01-30T06:00:31Z</dc:date>
    </item>
  </channel>
</rss>

