/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/ausearch_add_regex.3
32 строки
1 KB
Steve Grubb
Align man pages to glibc style pt2
30 июн 2025, 03:54
30 июн 2025, 03:54
b9c4482
Код
Авторство
О чём код?
.TH "AUSEARCH_ADD_REGEX" "3" "Sept 2007" "Red Hat" "Linux Audit API" .SH NAME ausearch_add_regex \- use regular expression search rule .SH "SYNOPSIS" .B #include <auparse.h> .sp .BI "int ausearch_add_regex(auparse_state_t *" au, const char *" regexp);" .SH "DESCRIPTION" ausearch_add_regex adds one search condition based on a regular expression to the current audit search expression. The search conditions can then be used to scan logs, files, or buffers for something of interest. The regular expression follows the posix extended regular expression conventions, and is matched against the full record (without interpreting field values). If an existing search expression .I E is already defined, this function replaces it by \fB(\fIE\fB && \fIthis_regexp\fB)\fR. .SH "RETURN VALUE" Returns \-1 if an error occurs; otherwise, 0 for success. .SH "SEE ALSO" .BR ausearch_add_expression (3), .BR ausearch_add_item (3), .BR ausearch_clear (3), .BR ausearch_next_event (3), .BR ausearch_cur_event (3), .BR regcomp (3). .SH AUTHOR Steve Grubb