This project is being made in response to the fact that many old projects contain dead links this tool will make it easy to quickly check all of the links in a repository to find the location of any/all links and determine if they are dead or not.
With the repo cloned you can use the repo-link-tester.py to test any repo you would like. Simply
run the application and pass in the link to the repo of your choice as an argument in the command line
python repo-link-tester.py https://www.github.com/user/repothis will clone the repo and run the analysis
To use the bash script version of the script use the audit.sh script and point it to a specific path
./audit.sh {path to repo}This project was developed using python 3.7.4
- clone the repo
- Setup a virtual environment and download dependencies
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements- Make changes as needed
- Add a flag to make it possible to point to an existing repo on a end system
- Implement entirely in a bash script
- Implement with regular grep NEED TO TEST
- Conditional checking for different versions of grep NEED TO TEST
- Github Action