Grep

Example looking for Tailwind CSS colors used in a project while attempting to theme that project.

This looks for the pattern while recursively checking the folder structure then returning unique matches and piping that to a file so you can manipulate the results

grep -orE '\-\w+?\-[1-9]00' . | sort -u > ./matches.txt