mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
17 lines
312 B
PHP
17 lines
312 B
PHP
|
# Grep file for regular expression and output to STDOUT
|
||
|
#
|
||
|
# Usage:
|
||
|
# --let $grep_file= /path/to/your/file
|
||
|
# --let $grep_regex= your_regex_string
|
||
|
# --source include/grep.inc
|
||
|
|
||
|
--perl
|
||
|
open (my $fh, "<", "$ENV{grep_file}") or die $!;
|
||
|
while (<$fh>)
|
||
|
{
|
||
|
/$ENV{grep_regex}/ &&
|
||
|
print;
|
||
|
}
|
||
|
close $fh;
|
||
|
EOF
|