+++ date="2022-11-30" author="spanskiduh" title="Find" description="click to read about Find" +++ # Find ### Examples of find command - `sudo find / -type d -iname "gasper"` - search direcotry - `sudo find /etc -type f -name "*.conf"` - display all configuration files, for more percison you should `|` into `grep`. You can also add `szie` flag to narrow down results to expected filesize. Other useful flags: `user`, `group`.