Skip to content

Instantly share code, notes, and snippets.

@urodoz
Created July 13, 2017 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save urodoz/f9aa3939d673989c051e8e70c9e9645c to your computer and use it in GitHub Desktop.
Save urodoz/f9aa3939d673989c051e8e70c9e9645c to your computer and use it in GitHub Desktop.
Fast find file function with filter
# Search on the current directory a matching file
# Find all files containing the args
# Usage: ff sample
function ff() {
find . -print |grep -i "$@"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment