On Mon, Sep 15, 2025 at 18:18:21 -0400, Eben King wrote: > sudo find /etc -type f -print0 | sudo xargs -0 grep -i resume For the record, you can replace this with: sudo grep -ri resume /etc Of course, your variant allows additional restrictions (filename filters, modification time filters, etc.) which grep -r doesn't.