Last active
February 17, 2025 17:43
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cargo.lock | |
target | |
uv.lock | |
.git | |
.github | |
.venv | |
*.css | |
*.pem | |
*.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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)" '*' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tips:
-F
appends/
to directory names (clearer outlines)-L
specifies a level depth (briefer outlines)