commands/fzip/fzip.cif
changeset 0 7f656887cf89
child 52 e07366cad0b2
equal deleted inserted replaced
-1:000000000000 0:7f656887cf89
       
     1 # fzip.cif
       
     2 # 
       
     3 # Copyright (c) 2010 Accenture. All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 # 
       
     9 # Initial Contributors:
       
    10 # Accenture - Initial contribution
       
    11 #
       
    12 
       
    13 ==name fzip
       
    14 
       
    15 ==short-description
       
    16 
       
    17 Compress and decompress files.
       
    18 
       
    19 ==long-description
       
    20 
       
    21 Generates compressed archives of files or extracts files from a compressed archive. Both 'zip' and 'gzip' file formats are support ('zip' is used by default).
       
    22 
       
    23 ==argument filename archive optional
       
    24 
       
    25 The zip archive to create or extract.
       
    26 
       
    27 ==option bool v verbose
       
    28 
       
    29 Enables additional reporting of information regarding the zip/unzip process.
       
    30 
       
    31 ==option bool u unzip
       
    32 
       
    33 Extract files from the specified archive.
       
    34 
       
    35 ==option filename d directory
       
    36 
       
    37 The directory to extract files into. Must be used in conjunction with '--unzip'.
       
    38 
       
    39 ==option bool r recurse
       
    40 
       
    41 Include sub-directories and any files contained therein when archiving.  Must be used in conjunction with '--unzip'.
       
    42 
       
    43 ==option filename f file multiple
       
    44 
       
    45 A file to archive. Only applicable when creating a new archive.
       
    46 
       
    47 ==option enum t compression-type
       
    48 
       
    49 ==enum-value zip
       
    50 
       
    51 PK Zip format (the default if not specified).
       
    52 
       
    53 ==enum-value gzip
       
    54 
       
    55 GNU Zip format. Note, this format can only handle a single file.
       
    56 
       
    57 ==copyright
       
    58 
       
    59 Copyright (c) 2008-2010 Accenture. All rights reserved.
       
    60