fd
fd is a user friendly replacement for find.
How to include hidden files and directories for searches?
fd 'ipa.*.crt' ~/ -HUses smartcase by default, which means if the search term is in lowercase, the search is done in case-insensitive manner. But if the search term contains Capital letters the search is done in a case-sensitive manner.
Find files with a specific extension:
fd --extension txtOpen a file found via
fd,fd 'Math.*.pdf' -x openUse
-xflag for executing a command.
Last updated