comparison scripts/miscellaneous/bunzip2.m @ 6082:588721ac2140

[project @ 2006-10-25 03:46:17 by jwe]
author jwe
date Wed, 25 Oct 2006 03:46:17 +0000
parents
children 7fad1fad19e1
comparison
equal deleted inserted replaced
6081:cd98c1e18d48 6082:588721ac2140
1 ## Copyright (C) 2006 Bill Denney
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
8 ## any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, write to the Free
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 ## 02110-1301, USA.
19
20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} bunzip2 (@var{bzfile}, @var{dir})
22 ## Unpack the bzip2 archive @var{bzfile} to the directory @var{dir}. If
23 ## @var{dir} is not specified, it defaults to the current directory.
24 ## @seealso{unpack, bzip2, tar, untar, gzip, gunzip, zip, unzip}
25 ## @end deftypefn
26
27 ## Author: Bill Denney <denney@seas.upenn.edu>
28
29 function varargout = bunzip2 (files, outputdir)
30
31 if (! (nargin == 1 || nargin == 2))
32 print_usage ();
33 endif
34
35 if (nargin == 1)
36 outputdir = ".";
37 endif
38 varargout = cell (1, nargout);
39 [varargout{:}] = unpack (files, outputdir, mfilename ());
40
41 endfunction