mirror of
https://github.com/wekan/wekan.git
synced 2025-09-21 17:40:48 +02:00
Fixed find.sh script errors about unmatched single quotes and binary files that are now ignored.
Thanks to xet7 !
This commit is contained in:
parent
855bac59bf
commit
730bb6d166
1 changed files with 3 additions and 1 deletions
4
find.sh
4
find.sh
|
@ -13,4 +13,6 @@ if (( $# != 1 )); then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
find . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep --no-messages $1 | less
|
||||
#find . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep --no-messages $1 | less
|
||||
#find . -print0 | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs -0 grep --no-messages $1 | less
|
||||
find . | grep -v node_modules | grep -v .build | grep -v .meteor | grep -v .git | xargs grep -I --no-messages $1 | less
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue