Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../usr/man/man3gen/gmatch.3gen
Real path: /usr/share/man/man3gen/gmatch.3gen
Zurück
'\" te .\" Copyright (c) 1989, AT&T. All rights reserved. .\" Portions Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. .TH gmatch 3GEN "14 May 2014" "Oracle Solaris 11.4" "String Pattern-Matching Library Functions" .SH NAME gmatch \- shell global pattern matching .SH SYNOPSIS .LP .nf cc [ \fIflag\fR ... ] \fIfile\fR ... \fB-lgen\fR [ \fIlibrary\fR ... ] #include <libgen.h> \fBint\fR \fBgmatch\fR(\fBconst char *\fR\fIstr\fR, \fBconst char *\fR\fIpattern\fR); .fi .SH DESCRIPTION .sp .LP \fBgmatch()\fR checks whether the null-terminated string \fIstr\fR matches the null-terminated pattern string \fIpattern\fR. See the \fBsh\fR(1), section \fBFile Name Generation\fR, for a discussion of pattern matching. A backslash (\fB\e\fR) is used as an escape character in pattern strings. .SH RETURN VALUES .sp .LP \fBgmatch()\fR returns non-zero if the pattern matches the string, zero if the pattern does not. .SH EXAMPLES .LP \fBExample 1\fR Examples of \fBgmatch()\fR function. .sp .LP In the following example, \fBgmatch()\fR returns non-zero (true) for all strings with "\fBa\fR" or "\fB-\fR" as their last character. .sp .in +2 .nf char *s; gmatch (s, "*[a\e-]" ) .fi .in -2 .sp .SH ATTRIBUTES .sp .LP See \fBattributes\fR(7) for descriptions of the following attributes: .sp .TS tab( ) box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ MT-Level MT-Safe .TE .sp .SH SEE ALSO .sp .LP \fBsh\fR(1), \fBattributes\fR(7)