Mercurial > hg > octave-nkf
annotate scripts/miscellaneous/gunzip.m @ 12212:f1ab2a12b4f4
Add S_ISSOCK function to documentation.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 29 Jan 2011 21:38:33 -0800 |
parents | c792872f8942 |
children | 8f2056646dba |
rev | line source |
---|---|
11523 | 1 ## Copyright (C) 2006-2011 Bill Denney |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
2 ## |
6082 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
6082 | 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 | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
6082 | 18 |
19 ## -*- texinfo -*- | |
6248 | 20 ## @deftypefn {Function File} {} gunzip (@var{gzfile}, @var{dir}) |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
21 ## Unpack the gzip archive @var{gzfile} to the directory @var{dir}. If |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
22 ## @var{dir} is not specified, it defaults to the current directory. If |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
23 ## the @var{gzfile} is a directory, all gzfile in the directory will be |
6082 | 24 ## recursively gunzipped. |
8297 | 25 ## @seealso{unpack, bunzip2, tar, untar, gzip, gunzip, zip, unzip} |
6082 | 26 ## @end deftypefn |
27 | |
28 ## Author: Bill Denney <denney@seas.upenn.edu> | |
29 | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
30 function varargout = gunzip (gzfile, dir = ".") |
6082 | 31 |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
32 if (nargin != 1 && nargin != 2) |
6082 | 33 print_usage (); |
34 endif | |
35 | |
6599 | 36 if (nargout > 0) |
37 varargout = cell (1, nargout); | |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
38 [varargout{:}] = unpack (gzfile, dir, mfilename ()); |
6599 | 39 else |
11469
c776f063fefe
Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents:
9245
diff
changeset
|
40 unpack (gzfile, dir, mfilename ()); |
6599 | 41 endif |
6082 | 42 |
43 endfunction |