Re: How to zip a file on From Unix shell script

2002-10-17 Thread WLSH
Thanks, all: We have compress available currently, but not gzip or zip. We will try compress. Mark Richard [EMAIL PROTECTED] wrote: RWB is correct - and the good news is that WinZip (a likely program at thedestination of your email) handles tar-ed and compress-ed files fine. Ofcourse it may pay

Re: How to zip a file on From Unix shell script

2002-10-17 Thread Tim Gorman
you can download it at http://www.gnu.org/software/gzip/gzip.html... - Original Message - From: WLSH To: Multiple recipients of list ORACLE-L Sent: Thursday, October 17, 2002 9:34 AM Subject: Re: How to zip a file on From Unix shell script Thanks, all:

RE: How to zip a file on From Unix shell script

2002-10-17 Thread david hill
Try doing a google on pkzip for unix We have it our HP-UX box it works fine -Original Message- From: WLSH [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 17, 2002 11:35 AM To: Multiple recipients of list ORACLE-L Subject: Re: How to zip a file on >From Unix shell script

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Gesler, Rich
Maybe this is of additional help http://www.gzip.org/zlib/ -Original Message-From: WLSH [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 17, 2002 11:35 AMTo: Multiple recipients of list ORACLE-LSubject: Re: How to zip a file on From Unix shell script Thanks, all: We

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Markham, Richard
I'm curious how you get sendmail/mailx to send a file as an attachment? I suppose it can be done. -Original Message-From: Tim Gorman [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 17, 2002 11:59 AMTo: Multiple recipients of list ORACLE-LSubject: Re: How to zip a file on

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Rajesh . Rao
You make me nostalgic. Reminds me of the times when I used to use elm and pine as my email software. I remember using uuencode to encode the files, and sending them like a normal text file. The receiver then had to save the email as an ascii text, and use uudecode to retrieve the attachment.

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Mirsky, Greg
try this... cat ! To: [EMAIL PROTECTED] mailto:someone;anywhere.com [EMAIL PROTECTED] mailto:someone2;anywhere.com Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=DMW.Boundary.605592468 Attached you can find the files. ! uuencode file001 uuencode file002 uuencode file003

RE: How to zip a file on From Unix shell script

2002-10-17 Thread david hill
You have to use uuencode Something like this (echo TEST uuencode file1 file1 ) |mail dba -Original Message- From: Markham, Richard [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 17, 2002 12:34 PM To: Multiple recipients of list ORACLE-L Subject: RE: How to zip a

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Gogala, Mladen
The best compression known to man is achieved by using the 'rm' compression utility. -Original Message-From: WLSH [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 16, 2002 6:44 PMTo: Multiple recipients of list ORACLE-LSubject: How to zip a file on From Unix shell script

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Brian McGraw
With or without the *really fine* compression flag?? (-rf) : ) -- | Brian McGraw /* DBA */ Infinity Insurance | | mailto:[EMAIL PROTECTED] | -- -Original Message- From: [EMAIL

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Grabowy, Chris
Title: Message Dude, you are nailing the jokes left and right, either your having a really bad day or a really good one... -Original Message-From: Gogala, Mladen [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 17, 2002 2:55 PMTo: Multiple recipients of list

RE: How to zip a file on From Unix shell script

2002-10-17 Thread Gogala, Mladen
I've already got my rear chewed up once for advising "rm -rf /". Not gonna do it again. :) -Original Message-From: Brian McGraw [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 17, 2002 3:08 PMTo: Multiple recipients of list ORACLE-LSubject: RE: How to zip a file on From

How to zip a file on From Unix shell script

2002-10-16 Thread WLSH
Hello, list: We have a unix nightly job which will send an email to a user. However, the file size is very large, so we need to zip the file before we send it out. Does anyone know the syntax or command of zipping a file from UNIX ? Regards,[EMAIL PROTECTED]Do you Yahoo!? Faith Hill - Exclusive

How to zip a file on From Unix shell script

2002-10-16 Thread WLSH
Hello list: We had a Unix job ran nightly and will send email to a user. But the file size is very large. So we need to zip the file when we send email to user from UNIX. Does any one know the syntax or command of doing this(zip file) ? Regards,[EMAIL PROTECTED] Do you Yahoo!? Faith Hill -

Re: How to zip a file on From Unix shell script

2002-10-16 Thread Ray Stell
On Wed, Oct 16, 2002 at 02:43:33PM -0800, WLSH wrote: Hello, list: We have a unix nightly job which will send an email to a user. However, the file size is very large, so we need to zip the file before we send it out. Does anyone know the syntax or command of zipping a file from UNIX ?

Re: How to zip a file on From Unix shell script

2002-10-16 Thread Reginald . W . Bailey
You can use compress or gzip to compress a file. compress -v [filename] should compress the file and tell you the percentage as well. Gzip is a GNU utility that may be on your system. These utilities may not be in your current path. RWB WLSH [EMAIL PROTECTED]@fatcity.com on 10/16/2002

Re: How to zip a file on From Unix shell script

2002-10-16 Thread Mark Richard
RWB is correct - and the good news is that WinZip (a likely program at the destination of your email) handles tar-ed and compress-ed files fine. Of course it may pay to add the .zip extension to the filename so that the mail client knows what to do with it.