<?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: uuencode in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574933#M18458</link>
    <description>I have a binary file that I am trying to convert to ASCII. I played with uuencode but can't create any file with it. &lt;BR /&gt;&lt;BR /&gt;I tried teh other suggestion with re-direct &amp;gt; but that doesn't work.</description>
    <pubDate>Fri, 01 Jul 2005 10:26:28 GMT</pubDate>
    <dc:creator>Ragni Singh</dc:creator>
    <dc:date>2005-07-01T10:26:28Z</dc:date>
    <item>
      <title>uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574929#M18454</link>
      <description>Hello, when I ran the following, it produces standard output and not a file. Any idea whats goin on here or is my syntax not correct.&lt;BR /&gt;&lt;BR /&gt;uuencode -m test test1.&lt;BR /&gt;&lt;BR /&gt;points to be assigned.</description>
      <pubDate>Fri, 01 Jul 2005 08:28:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574929#M18454</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2005-07-01T08:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574930#M18455</link>
      <description>UUEncode will always put it's output onto STDOUT.&lt;BR /&gt;&lt;BR /&gt;The reason for the two filenames is for input, and what is encoded into the output.&lt;BR /&gt;&lt;BR /&gt;For example, lets look at the headers involved:&lt;BR /&gt;&lt;BR /&gt;[bekar@elfgrove tmp]$ uuencode data test.txt&lt;BR /&gt;begin 644 test.txt&lt;BR /&gt;.... encoded data here ...&lt;BR /&gt;&lt;BR /&gt;And with '-m':&lt;BR /&gt;&lt;BR /&gt;[bekar@elfgrove tmp]$ uuencode -m data test.txt&lt;BR /&gt;begin-base64 644 test.txt&lt;BR /&gt;... encoded data here ...&lt;BR /&gt;&lt;BR /&gt;The idea is you redirect (using &amp;gt;) or pipe (|) the ouput of UUEncode to another application or file.&lt;BR /&gt;&lt;BR /&gt;UUDecode on the other hand will take a filename (or data-stream/pipe), and output a file based on the name on the 'begin' line of the encoded data.  This can be overridden with the '-o' flag.  This is only available on the UUDECODE application.</description>
      <pubDate>Fri, 01 Jul 2005 08:35:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574930#M18455</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-07-01T08:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574931#M18456</link>
      <description>hi,&lt;BR /&gt;uuencode writes to standard output. If you want it to write to test1:&lt;BR /&gt;uuencode -m test &amp;gt; test1&lt;BR /&gt;greetzz&lt;BR /&gt;Donald</description>
      <pubDate>Fri, 01 Jul 2005 08:36:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574931#M18456</guid>
      <dc:creator>Donald Kok</dc:creator>
      <dc:date>2005-07-01T08:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574932#M18457</link>
      <description>Tell me please, what you are trying to accomplish. I'm pretty sure I can help.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 01 Jul 2005 08:36:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574932#M18457</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-07-01T08:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574933#M18458</link>
      <description>I have a binary file that I am trying to convert to ASCII. I played with uuencode but can't create any file with it. &lt;BR /&gt;&lt;BR /&gt;I tried teh other suggestion with re-direct &amp;gt; but that doesn't work.</description>
      <pubDate>Fri, 01 Jul 2005 10:26:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574933#M18458</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2005-07-01T10:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574934#M18459</link>
      <description>I'm not sure in this event that uuencode is the best tool to use. Maybe, but these commands might help depending on what kind of file it is.&lt;BR /&gt;&lt;BR /&gt;Consider the following commands:&lt;BR /&gt;&lt;BR /&gt;dos2unix&lt;BR /&gt;&lt;BR /&gt;unix2dos(1) mac2unix(1)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 01 Jul 2005 15:56:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574934#M18459</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-07-01T15:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574935#M18460</link>
      <description>So what you want to do is this:&lt;BR /&gt;&lt;BR /&gt;uuencode -m binfile binfile &amp;gt; file.uuencode&lt;BR /&gt;&lt;BR /&gt;Then transfer 'file.uuencode' to the remote machine, and then:&lt;BR /&gt;&lt;BR /&gt;uudecode file.uuencode&lt;BR /&gt;&lt;BR /&gt;This will extract 'binfile'.</description>
      <pubDate>Fri, 01 Jul 2005 18:18:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574935#M18460</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-07-01T18:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574936#M18461</link>
      <description>Hi Sanjit,&lt;BR /&gt;If you want to grab ascii out of a binary, you can use the strings command:&lt;BR /&gt;&lt;BR /&gt;strings binfile &amp;gt; ascifile&lt;BR /&gt;&lt;BR /&gt;Is this what you want to do ?&lt;BR /&gt;Donald</description>
      <pubDate>Mon, 04 Jul 2005 02:08:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574936#M18461</guid>
      <dc:creator>Donald Kok</dc:creator>
      <dc:date>2005-07-04T02:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574937#M18462</link>
      <description>u can use 'dd if=file1 of=file2 conv=ascii' to convert ur binary file to ascii .</description>
      <pubDate>Mon, 04 Jul 2005 05:20:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574937#M18462</guid>
      <dc:creator>Bejoy C Alias</dc:creator>
      <dc:date>2005-07-04T05:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: uuencode</title>
      <link>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574938#M18463</link>
      <description>Great, teh last one worked. I will se the dd for now. You get 10 points buddy.</description>
      <pubDate>Tue, 05 Jul 2005 13:05:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/uuencode/m-p/3574938#M18463</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2005-07-05T13:05:25Z</dc:date>
    </item>
  </channel>
</rss>

