Skip to content

Commit

Permalink
Added search utils for meta GUIDs and TODO tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
rayment committed Mar 26, 2022
1 parent 81bbad5 commit 2b69ffb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions meta_find.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

echo "Looking for meta file..."
echo "---"
grep --color=always -r -e "$1" Monopoly/Assets/**/**.meta

8 changes: 8 additions & 0 deletions todo_find.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

echo "Looking for TODO, BUG and FIXME labels..."
echo "---"
grep --color=always -r -e "TODO" --exclude-dir=Monopoly/Assets/3rdParty Monopoly/Assets
grep --color=always -r -e "BUG" --exclude-dir=Monopoly/Assets/3rdParty Monopoly/Assets
grep --color=always -r -e "FIXME" --exclude-dir=Monopoly/Assets/3rdParty Monopoly/Assets

0 comments on commit 2b69ffb

Please sign in to comment.