Skip to content

Initial Release

Latest
Compare
Choose a tag to compare
@MadhushaPrasad MadhushaPrasad released this 30 Oct 19:23

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

  1. Save the script as github-follow-checker.sh.
  2. Make it executable: chmod +x github-follow-checker.sh.
  3. Run the script: ./github-follow-checker.sh.
  4. 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.