Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove some unused scripts, add one script to search for orphans (replaces 3 similar scripts that didn't work) #13127

Merged
merged 4 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.