Output, Context, and Reporting/Print only the matched text

Return the matched substring instead of the full line.

Section: Formatting and location metadata

Print only the matched text

bash
bash
rg -o '\b[A-F0-9]{8}\b' dump.txt
Explanation

Great for extracting tokens, IDs, codes, or other bounded fragments.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Formatting and location metadata
Disable file headings
Print file names inline per match instead of grouped headings.
OpenIn sheetbashsame section
Always show file names
Force file names even for a single file.
OpenIn sheetbashsame section
Show column numbers
Include the column offset for each match.
OpenIn sheetbashsame section
Preview replacements in output
Show how a replacement would look without editing files.
OpenIn sheetbashsame section
Show lines before each match
Include preceding context lines.
OpenIn sheetbash1 tag match
Print summary statistics
Show counts and timing information at the end of a search.
OpenIn sheetbash1 tag match