Skip to content

Commit

Permalink
Merge pull request #13127 from gforney/master
Browse files Browse the repository at this point in the history
remove some unused scripts, add one script to search for orphans (replaces 3 similar scripts that didn't work)
  • Loading branch information
gforney committed Jul 5, 2024
2 parents 5d3fe2b + 01a82f4 commit d5686e6
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 255 deletions.
23 changes: 0 additions & 23 deletions Utilities/Scripts/find_bash_orphans.sh

This file was deleted.

19 changes: 0 additions & 19 deletions Utilities/Scripts/find_bat_orphans.sh

This file was deleted.

155 changes: 0 additions & 155 deletions Utilities/Scripts/find_latex_orphans.sh

This file was deleted.

31 changes: 31 additions & 0 deletions Utilities/Scripts/find_orphan.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/bin/bash
file=$1
type=$2

CURDIR=`pwd`
cd ../../..
GITROOT=`pwd`
BOTREPO=$GITROOT/bot
FDSREPO=$GITROOT/fds
SMVREPO=$GITROOT/smv

echo "************************************************"
echo "*** looking for $file in $BOTREPO"
echo "************************************************"
cd $BOTREPO
grep -r $file --include=*sh
grep -r $file --include=*bat

cd $FDSREPO
echo "************************************************"
echo "*** looking for $file in $FDSREPO"
echo "************************************************"
grep -r $file --include=*sh
grep -r $file --include=*bat

cd $SMVREPO
echo "************************************************"
echo "*** looking for $file in $SMVREPO"
echo "************************************************"
grep -r $file --include=*sh
grep -r $file --include=*bat
58 changes: 0 additions & 58 deletions Utilities/Scripts/make_validation_caselist.sh

This file was deleted.

0 comments on commit d5686e6

Please sign in to comment.