File: fnmatch.3

package info (click to toggle)
manpages-es 1.55-9
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 7,468 kB
  • ctags: 6
  • sloc: sh: 1,629; makefile: 64
file content (106 lines) | stat: -rw-r--r-- 3,829 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.\" (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\" License.
.\" Modified Sat Jul 24 19:35:54 1993 by Rik Faith (faith@cs.unc.edu)
.\" Modified Mon Oct 16 00:16:29 2000 following Joseph S. Myers
.\" Translated into Spanish Fri Jan 16 1998 by Gerardo Aburruzaga
.\" García <gerardo.aburruzaga@uca.es>
.\" Translation revised Wed Dec 30 1998 by Juan Piernas <piernas@ditec.um.es>
.\" Traducción revisada por Miguel Pérez Ibars <mpi79470@alu.um.es> el 2-marzo-2005
.\"
.TH FNMATCH 3  "15 octubre 2000" "GNU" "Manual del Programador de Linux"
.SH NOMBRE
fnmatch \- comprueba la concordancia de un nombre de camino o fichero
.SH SINOPSIS
.nf
.B #include <fnmatch.h>
.sp
.BI "int fnmatch(const char *" "patron" ", const char *" cadena ", int "flags ");"
.fi
.SH DESCRIPCIÓN
La función
.B fnmatch()
comprueba si el argumento
.I cadena
concuerda con el argumento
.I patron
que es un patrón al estilo de los comodines del `shell'.
.PP
El argumento
.I flags
modifica el comportamiento; es el resultado de aplicar el operador de
bits OR (|) a cero o más de los siguientes modificadores:
.TP
.B FNM_NOESCAPE
Si este modificador está activado, se trata al carácter de barra
inclinada invertida (\\) como un carácter ordinario, en lugar de como
un carácter de escape. 
.TP
.B FNM_PATHNAME
Si este modificador está activado, un carácter de barra inclinada (/) en
.I cadena
sólo concordará con una barra inclinada en
.I patron
y no, por ejemplo, con una secuencia entre corchetes ([]) que contenga
una barra inclinada.
.TP
.B FNM_PERIOD
Si este modificador está activado, un punto inicial en
.I cadena
ha de concordar exactamente con un punto en
.IR patron .
Se considera que un punto es inicial si es el primer carácter en
.IR cadena ,
o si 
.B FNM_PATHNAME 
está activado y el punto está inmediatamente tras una barra inclinada.
.TP
.B FNM_FILE_NAME
Éste es un sinónimo de GNU para \fBFNM_PATHNAME\fR.
.TP
.B FNM_LEADING_DIR
Si este modificador (una extensión de GNU) está activado, se considerará que
el patrón concuerda si concuerda con un segmento inicial de
.I cadena
que va seguido por una barra inclinida. Esta opción es sobre todo para uso interno
de glibc y sólo está implementada en ciertos casos.
.TP
.B FNM_CASEFOLD
Si este modificador (una extensión de GNU) está activado, la concordancia
con el patrón se realizará sin distinguir entre mayúsculas y minúsculas.
.SH "VALOR DEVUELTO"
Cero si
.I cadena
concuerda con
.IR patron ,
.B FNM_NOMATCH
si no hay concordancia, u otro valor distinto de cero si hay un error.
.SH "CONFORME A"
ISO/IEC 9945-2: 1993 (POSIX.2). Los modificadores
.BR FNM_FILE_NAME ", " FNM_LEADING_DIR " y " FNM_CASEFOLD
son extensiones de GNU.
.SH "VÉASE TAMBIÉN"
.BR sh (1),
.BR glob (3),
.BR scandir (3),
.BR glob (7)