Skip to content

Instantly share code, notes, and snippets.

@lmmx
Last active February 17, 2025 17:43
Show Gist options
  • Save lmmx/9406787cc6b3aa55e38a54dd6d4c0a28 to your computer and use it in GitHub Desktop.
Save lmmx/9406787cc6b3aa55e38a54dd6d4c0a28 to your computer and use it in GitHub Desktop.
Find with an .aiignore and example Rust project .aiignore, which is expected to be at the root of the git repo
Cargo.lock
target
uv.lock
.git
.github
.venv
*.css
*.pem
*.png
# function findit (){ find ./ -iname "$@" 2> /dev/null; }
# WITHOUT GIT REPO ROOT NAVIGATION:
# function aifindit (){ find ./ -iname "$@" -type f | grep -vE -f .aiignore 2>/dev/null; }
# function aitree (){tree -I "$(paste -sd '|' .aiignore)" "$@"; }
function aifindit (){ find ./ -iname "$@" -type f | grep -vE -f "$(git rev-parse --show-toplevel)/.aiignore" 2>/dev/null; }
function aitree (){ tree -I "$(paste -sd '|' $(git rev-parse --show-toplevel)/.aiignore)" "$@"; }
findit '*' -type f | grep -vE -f .aiignore 2>/dev/null
tree -I "$(paste -sd '|' .aiignore)" '*'
@lmmx
Copy link
Author

lmmx commented Feb 16, 2025

Tips:

  • -F appends / to directory names (clearer outlines)
  • -L specifies a level depth (briefer outlines)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment