Overview
This is the initial release of the GitHub Follow Checker script, a simple Bash script that checks your GitHub account to find users you follow who do not follow you back.
Features
- Reads GitHub username and personal access token from a file (
github.txt
). - Prompts the user for their credentials if the file does not exist or contains invalid data.
- Fetches the list of users you are following and those who follow you back.
- Identifies and lists users that you follow but who do not follow you back.
Usage
- Save the script as
github-follow-checker.sh
. - Make it executable:
chmod +x github-follow-checker.sh
. - Run the script:
./github-follow-checker.sh
. - Follow the prompts to input your GitHub credentials.
Important Notes
- Ensure you have
jq
installed to process JSON data. - Create a personal access token with the necessary permissions to access follower and following information.
Future Improvements
- Add error handling for API requests.
- Support for multiple user accounts.