Skip to content

[EXTERNAL] Removes some duplicate files#3113

Open
motonai wants to merge 1 commit into01-edu:masterfrom
motonai:patch-04-groupie-tracker-duplicate-audit-file-removal
Open

[EXTERNAL] Removes some duplicate files#3113
motonai wants to merge 1 commit into01-edu:masterfrom
motonai:patch-04-groupie-tracker-duplicate-audit-file-removal

Conversation

@motonai
Copy link
Contributor

@motonai motonai commented Nov 22, 2025

[EXTERNAL]

I noticed in groupie-tracker (but also in other subjects) that there are duplicate files inside the project's directories. Apparently, there is this pattern:

subjects/<project>/<subproject>/{audit.md,audit/README.md}

The only think changing between them is the link to the good-practices document.

Why?

They seem to serve no purpose. As far as other projects' structures suggest, the README.md file under the audit directory of a subproject is the one that is valid.

Solution Overview

Removal of the duplicates for the groupie-tracker's subprojects.

Implementation Details

In the cases included in the PR, I choose to remove only the ones for groupie-tracker project.

I choose to not remove other duplicates, since there are some cases that the differences exceed the link to the good-practices document. For example, in the subproject 0-shell/job-control, one suggests to run ls while the other suggests tar. While the convention seem to be straight-forward, for those that differ more than the link, I wanted to check with you first and I can append the current PR or revisit on a new one.

I found those with the following:

find . -type f | grep audit.md | while read line; do echo $line | cut -d '/' -f 3,4; echo "==================="; diff $line ${line/.md//README.md}; echo; done

@motonai motonai force-pushed the patch-04-groupie-tracker-duplicate-audit-file-removal branch from e532312 to 878172b Compare November 27, 2025 10:48
@motonai motonai force-pushed the patch-04-groupie-tracker-duplicate-audit-file-removal branch from 878172b to 0a83d42 Compare December 13, 2025 17:41
@motonai motonai force-pushed the patch-04-groupie-tracker-duplicate-audit-file-removal branch from 0a83d42 to ee3459e Compare December 23, 2025 10:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant