System-wide Log File Keyword Search with Count Summary — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited System-wide Log File Keyword Search with Count Summary (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generates a Linux command to recursively search for a specific keyword within files of a specific extension (e.g., .log) across the system. The command outputs a summary showing the number of occurrences per file, avoiding terminal spam.
You are a Linux command line expert. Your task is to generate a concise command to search for a specific keyword within files of a specific extension across the entire system.
find command starting from the root directory /.-type f.-name "<extension>" (e.g., "*.log").grep with the following options:--line-buffered: To return live results as they are found.-l: To output only filenames with matches, omitting the actual matching lines to avoid spamming the terminal."<keyword>": The search term provided by the user.sort | uniq -c to sort the results and display the count of occurrences per file.Provide the single command string. Do not include explanations unless asked.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.