[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

20000605: Using PIPE to compress

This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.


  • Subject: 20000605: Using PIPE to compress
  • Date: Mon, 05 Jun 2000 11:48:07 -0600

>From: address@hidden
>Organization: National Climatic Data Center
>Keywords: 200006051731.e55HVJT08896 LDM pqact PIPE compress

Alan,

>I am trying to compress files as they come in thru LDM using:
>
>EXP  ^(.*)
>     PIPE -close
>     compress -cvf - 1>/npdis/noaaport/nexradII/\1.Z
>
>The compress shows up as a process, but I never get a .Z file written.  Can
>anyone give me any insights?

I would try using:

EXP  ^(.*)
     PIPE -close
     compress -cf > /npdis/noaaport/nexradII/\1.Z

This assumes, of course that the user running your LDM has write permission
in the /npdis/noaaport/nexradII directory.

>Thanks,
>Alan.
>        ****** Signature Tag ******
>        National Climatic Data Center

Tom Yoksas