Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mbk_out_filter(1) [debian man page]

MBK_OUT_FILTER(1)					     MBK ENVIRONMENT VARIABLES						 MBK_OUT_FILTER(1)

NAME
MBK_OUT_FILTER - define the input filter ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr DESCRIPTION
MBK_OUT_FILTER sets the output filter for writting compressed Alliance files. Filter is typically a string containing filename and options. This filter must read non compressed data flow on it standard input and write compressed data flow on it standard output. If a non com- pressed version of a file exist in the same target directory the designer want the save a file's compressed version, to ensure that file will be read later and not the non compressed one, the non compressed file is DELETED. To activate filters, variable MBK_FILTER_SFX must be set. EXAMPLE
Writing compressed files with gzip : setenv MBK_OUT_FILTER "/asim/gnu/bin/gzip -c" setenv MBK_FILTER_SFX ".gz" SEE ALSO
mbk(3), MBK_FILTER_SFX(1), MBK_IN_FILTER(1), mbkenv(1). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1999 MBK_OUT_FILTER(1)

Check Out this Related Man Page

MBK_IN_FILTER(1)					     MBK ENVIRONMENT VARIABLES						  MBK_IN_FILTER(1)

NAME
MBK_IN_FILTER - define the input filter ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr DESCRIPTION
MBK_IN_FILTER set the input filter for reading compressed Alliance files. Filter is typically a string containing filename and options. This filter must read compressed data flow on it standard input and write non compressed data flow on it standard output. Files are taken in the first directory where they are found according to the environment variable MBK_CATA_LIB. If a file compressed version and a file non compressed version exist booth in the same directory, the non compressed is opended, and a warning message is supllyed. To activate fil- ters, variable MBK_FILTER_SFX must be set. EXAMPLE
Opening compressed files with gzip : setenv MBK_IN_FILTER "/asim/gnu/bin/gunzip -c" setenv MBK_FILTER_SFX ".gz" SEE ALSO
mbk(3), MBK_FILTER_SFX(1), MBK_OUT_FILTER(1), mbkenv(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1999 MBK_IN_FILTER(1)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Search first line of compressed file

I want to read a directory full of compressed files and move the file to another directory if it meets certain criteria. I only want to look at the first line of the compressed file and if I find the string, do the move. I am currently using the following: zgrep -R -L... (1 Reply)
Discussion started by: cbreiner
1 Replies

2. UNIX for Dummies Questions & Answers

compressed file

I compressed a file by using gzip command gzip <<xx>> filename changed to xx.gz How to view this xx.gz file. Any idea. Thanks in advance. (7 Replies)
Discussion started by: venkatesht
7 Replies

3. UNIX for Dummies Questions & Answers

Extracting data from many compressed files

I have a large number (50,000) of pretty large compressed files and I need only certain lines of data from them (each relevant line contains a certain key word). Each file contains 300 such lines. The individual file names are indexed by file number (file_name.1, file_name.2, ... ,... (1 Reply)
Discussion started by: Boltzmann
1 Replies

4. Shell Programming and Scripting

Process a compressed file

Hi i have a filename.tar.bz2 and i have to parse it with a tool that doesn't support compressed files. I have to do it for many big files, so i can't decompress and then process. I'd like to do something like: tar -jxvf namefile.tar.bz2 | parsing_tool i mean analyze it directly,... (4 Replies)
Discussion started by: Dedalus
4 Replies

5. UNIX for Dummies Questions & Answers

Crontab

how can i create a personal entry for "user1" that creates a compressed version of the directory home/user1 every tuesday at 8.30pm and ensure the compressed version is forwarded to the users home directory ? thanks (1 Reply)
Discussion started by: erve1986
1 Replies

6. UNIX for Beginners Questions & Answers

Extraction of .gz file using 7zip fails

Hi, My target is to send a file created by Unix process to myself as an excel file. So I have used the below commands to achieve it. tr -d '\t' < PROGRAM_CREATED_FILE | sed -e 's/\\//g' | awk 'BEGIN{FS=">"; OFS="\t"} '{$1=$1}1' > file.xls gzip -9 file.xls echo "test mail" | sendxchange -a... (3 Replies)
Discussion started by: PikK45
3 Replies