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
|
.\" (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)
.\" Translated into Spanish Fri Jan 16 1998 by Gerardo Aburruzaga
.\" Garca <gerardo.aburruzaga@uca.es>
.\" Translation revised Wed Dec 30 1998 by Juan Piernas <piernas@ditec.um.es>
.\"
.TH FNMATCH 3 "17 Abril 1998" "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 DESCRIPCIN
La funcin
.B fnmatch()
comprueba si el argumento
.I cadena
concuerda con el argumento
.I patron
que es un patrn 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 ms de los siguientes modificadores:
.TP
.B FNM_NOESCAPE
Si este modificador est activado, se trata al carcter de barra
inclinada invertida (\\) como un carcter ordinario, en lugar de como
un carcter de escape.
.TP
.B FNM_PATHNAME
Si este modificador est activado, un carcter de barra inclinada (/) en
.I cadena
slo 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 carcter 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 sinnimo de GNU para \fBFNM_PATHNAME\fR.
.TP
.B FNM_LEADING_DIR
Si este modificador (una extensin de GNU) est activado, se considerar que
el patrn concuerda si concuerda con un segmento inicial de
.I cadena
que va seguido por una barra inclinida.
.TP
.B FNM_CASEFOLD
Si este modificador (una extensin de GNU) est activado, la concordancia
con el patrn se realizar sin distinguir entre maysculas y minsculas.
.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 "VASE TAMBIN"
.BR sh "(1), " glob "(3), " glob (7)
|