1 /* Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 main (int argc
, char *argv
[])
35 while ((i
= getopt (argc
, argv
, "bcdeEgmopqstT")) != -1)
39 glob_flags
|= GLOB_BRACE
;
42 glob_flags
|= GLOB_NOCHECK
;
45 glob_flags
|= GLOB_ONLYDIR
;
48 glob_flags
|= GLOB_NOESCAPE
;
51 glob_flags
|= GLOB_ERR
;
54 glob_flags
|= GLOB_NOMAGIC
;
57 glob_flags
|= GLOB_MARK
;
60 glob_flags
|= GLOB_DOOFFS
;
64 glob_flags
|= GLOB_PERIOD
;
70 glob_flags
|= GLOB_NOSORT
;
73 glob_flags
|= GLOB_TILDE
;
76 glob_flags
|= GLOB_TILDE_CHECK
;
82 if (optind
>= argc
|| chdir (argv
[optind
]))
86 if (optind
+ 1 >= argc
)
89 /* Do a glob on each remaining argument. */
90 for (j
= optind
+ 1; j
< argc
; j
++) {
91 i
= glob (argv
[j
], glob_flags
, NULL
, &g
);
94 glob_flags
|= GLOB_APPEND
;
97 /* Was there an error? */
98 if (i
== GLOB_NOSPACE
)
99 puts ("GLOB_NOSPACE");
100 else if (i
== GLOB_ABORTED
)
101 puts ("GLOB_ABORTED");
102 else if (i
== GLOB_NOMATCH
)
103 puts ("GLOB_NOMATCH");
105 /* If we set an offset, fill in the first field.
106 (Unless glob() has filled it in already - which is an error) */
107 if ((glob_flags
& GLOB_DOOFFS
) && g
.gl_pathv
[0] == NULL
)
108 g
.gl_pathv
[0] = (char *) "abc";
110 /* Print out the names. Unless otherwise specified, qoute them. */
113 for (i
= 0; i
< g
.gl_offs
+ g
.gl_pathc
; ++i
)
114 printf ("%s%s%s\n", quotes
? "`" : "",
115 g
.gl_pathv
[i
] ? g
.gl_pathv
[i
] : "(null)",