fd find Snippets
# Find a patternfind -iname '*pattern*'
# Find a pattern with fdfd patternfd 'put_regex_here'
# Find pattern from fd output with rg for better highlightingfd | rg -i pattern
# List files recursively in current and sub directoriesfd
# Find with fd files with these 3 words in any orderfd | rg -e --pcre2 '^(?=.*apple)(?=.*banana)(?=.*cherry).*'