{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\froman\fprq2\fcharset0 Bookman Old Style;}}
{\colortbl ;\red0\green0\blue0;}
\viewkind4\uc1\pard\cf1\f0\fs24 You can use the pax command on USS to translate the text files while creating a tar file.  For example:\par
\par
pax -wvf mypax.tar -ofrom=ibm-1047,to=iso8859-1 files\par
\par
Then FTP the mypax.tar file to the PC and use something like WinZip to expand the files out of the tar/pax.\par
\par
~~~~~\par
John Rowland\par
Fischer International Systems Corporation\par
www.fischerinternational.com\par
239 436 2751\par
\par
\par
}

Received: from -- none -- (10.102.35.35) by fisc.com (FISC HDT v1.0g1 SMTP gateway for 
Unix System Services)
        with ESMTP id gcsnt.fisc.com; Friday, 07 Nov 2003 16:20:07 GMT
Received: from mailer390.marist.edu ([148.100.80.47])
        by gcsnt.fisc.com (Merak 6.2.1) with ESMTP id COA37610
        for <[EMAIL PROTECTED]>; Fri, 07 Nov 2003 11:23:41 -0500
Received: from VM.MARIST.EDU (vm.marist.edu [148.100.80.40])
        by mailer390.marist.edu (Postfix) with ESMTP
        id D48321275F; Fri,  7 Nov 2003 11:23:18 -0500 (EST)
Received:  by VM.MARIST.EDU (IBM VM SMTP Level 430) via spool with SMTP id 7682 ; Fri, 
07 Nov 2003 11:23:45 EDT
Received: from VM.MARIST.EDU (NJE origin [EMAIL PROTECTED]) by VM.MARIST.EDU (LMail 
V1.2b/1.8b) with BSMTP id 6640; Fri, 7 Nov 2003 11:23:46 -0500
Received: from VM.MARIST.EDU by VM.MARIST.EDU (LISTSERV release 1.8e) with NJE
          id 0222 for [EMAIL PROTECTED]; Fri, 7 Nov 2003 11:23:45 -0500
Received: from MARIST (NJE origin [EMAIL PROTECTED]) by VM.MARIST.EDU (LMail
          V1.2b/1.8b) with BSMTP id 6634; Fri, 7 Nov 2003 11:23:45 -0500
Received: from ahmler1.mail.eds.com [192.85.154.71] by VM.MARIST.EDU (IBM VM
          SMTP Level 430) via TCP with SMTP ; Fri, 07 Nov 2003 11:23:44 EST
Received: from ahmlir4.mail.eds.com (ahmlir4-2.mail.eds.com [192.85.154.134])
          by ahmler1.mail.eds.com (8.12.10/8.12.9) with ESMTP id hA7GNEEA001265
          for <[EMAIL PROTECTED]>; Fri, 7 Nov 2003 11:23:14 -0500
Received: from ahmlir4.mail.eds.com (localhost [127.0.0.1]) by
          ahmlir4.mail.eds.com (8.11.6p3/8.11.6) with ESMTP id hA7GNEP18436 for
          <[EMAIL PROTECTED]>; Fri, 7 Nov 2003 11:23:14 -0500
Received: from usahm101.exmi01.exch.eds.com (usahm101.exmi01.exch.eds.com
          [207.37.138.189]) by ahmlir4.mail.eds.com (8.11.6p3/8.11.6) with
          ESMTP id hA7GNEf18430 for <[EMAIL PROTECTED]>; Fri, 7 Nov 2003
          11:23:14 -0500
Received: by usahm101.exmi01.exch.eds.com with Internet Mail Service
          (5.5.2657.72) id <WADMK27Y>; Fri, 7 Nov 2003 11:23:14 -0500
X-Mailer: Internet Mail Service (5.5.2657.72)
Approved-By:  "Post, Mark K" <[EMAIL PROTECTED]>
Message-ID:  <[EMAIL PROTECTED]>
Date:         Fri, 7 Nov 2003 11:23:09 -0500
Reply-To: [EMAIL PROTECTED]
Sender: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject:Re: Brain fart - redirect stderr/std out to a file and NOT see an ything after 
a command is run
To: [EMAIL PROTECTED]
Precedence: list
X-HDT-HopCount: 1


The wget command is one of my favorites, and it is available for Windows,
but from my reading of the man page, wget only does binary transfers, not
text/ASCII ones.  So, Jim would wind up with EBCDIC on his Linux/390 system,
not ASCII.


Mark Post

-----Original Message-----
From: McKown, John [mailto:[EMAIL PROTECTED]
Sent: Friday, November 07, 2003 10:37 AM
To: [EMAIL PROTECTED]
Subject: Re: Brain fart - redirect stderr/std out to a file and NOT see
an ything after a command is run


On z/Linux, use the "wget" command. It will do recursive ftp "gets". On
Windows, you are on your own <grin>. Of course, you could use "wget" to get
it to Linux (converting to ASCII), then use zip or tar on Linux to bundle it
up, then ftp to get the tar file to Windows.


--
John McKown
Senior Systems Programmer
UICI Insurance Center
Applications & Solutions Team
+1.817.255.3225

This message (including any attachments) contains confidential information
intended for a specific individual and purpose, and its' content is
protected by law.  If you are not the intended recipient, you should delete
this message and are hereby notified that any disclosure, copying, or
distribution of this transmission, or taking any action based on it, is
strictly prohibited.

> -----Original Message-----
> From: James Melin [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 07, 2003 8:55 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Brain fart - redirect stderr/std out to a file
> and NOT see anything after a command is run
>
>
> Actually, it occurs to me that this will do exactly what I
> wanted it to do,
> but not what I need it to do....
>
> Specifically, I need to manually re-import the file system
> structure of a
> web site built on OS/390 Unix system services to which the developer
> destroyed his 'frontpage' source. The import website thing
> only follows
> links and he has some JavaScript built menus and crap, and
> cannot get the
> whole thing back properly. We want to re-deploy this to z/Linux (minor
> changes to scripts required)
>
> I had looked into having FTP recursively navigate a directory
> structure and
> re-created it on his desktop but I can't seem to see how to
> do that. So I
> was going to just tar the whole thing but the I realized the
> text based
> files  will be EBCDIC, so that's kinda useless.
>
> What is the easiest way to bring this USS installed directory
> structure
> into windows so we can used the developer's favorite (gack) tool to
> redeploy this to z/Linux?
>

Reply via email to