perl
Verified for current stable LTS
Perl Command: Print Lines Matching Regex Case Insensitive
Use for print lines matching regex case insensitive with Perl. Exact CLI syntax to print lines matching regex case insensitive using Perl.
When to use this: Use for print lines matching regex case insensitive with Perl.
Command Syntax
perl -n -e 'print if m/regex1/ and m/regex2/i' perl -n -e 'print if m/regex1/ and m/regex2/i' Command Breakdown
-n- Command Option
- Tool-specific option used by this command invocation.
-e- Command Option
- Tool-specific option used by this command invocation.
FAQ
Purpose: Exact syntax to print lines matching regex case insensitive using Perl.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Perl Command: In Place Substitute Regex With Replacement
perl -i'.bak' -p -e 's/regex/<replacement>/g' <path/to/files> Perl Command: Say First Match Group Ignore Space perl -n -E 'say $1 if m/<before> ( <group_regex> ) <after>/x' Jmeter Command: Run Test Plan Nongui jmeter -n -t <path/to/file.jmx> Jmeter Command: Run Test Plan Nongui Logfile jmeter -n -t <path/to/file.jmx> -l <path/to/logfile.jtl> Grep Command: Print File Name And Line Number With Color Output grep -Hn --color=always "<search_pattern>" <path/to/file>