Skip to content

These are just a collection of random bash scripts I have found useful.

License

Notifications You must be signed in to change notification settings

rahulkhorana/random-bash-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🤖 random-bash-scripts

A collection of random bash scripts I’ve written or found useful over time.

All scripts live in the scripts/ directory.

📜 Available Scripts


🔄 backup-github.sh

Backs up all your GitHub repositories (including private ones) as full git mirrors using a Personal Access Token (PAT).

⚙️ Setup

  1. Open the script and update the following lines:
USERNAME="your_github_username"
TOKEN="your_personal_access_token"

🔐 Your PAT must have at least repo scope.

  1. Make the script executable:
chmod +x backup-github.sh
  1. Run it
./backup-github.sh

📁 Output The script will create a directory called github-backup in your home folder.

☁️ Optional: Zip & Sync to Cloud To create a compressed archive:

tar -czf github-backup.tar.gz -C $HOME github-backup

You can then upload to Dropbox, Google Drive, or S3 manually or via sync tools like rclone.


🖥️ check-port.sh

Detects whether a specified port is currently open and being listened to.

./check-port.sh 3000

Useful for checking if dev servers or services are running.


📊 git-quick-stats.sh

Displays repo name, top contributors, commit count, recent activity, and more in a nicely formatted CLI dashboard.

./git-quick-stats.sh

Great for quick visibility into Git project status.


ℹ️ system-info.sh

Prints host info, CPU, memory, disk usage, top processes, and more. Designed for macOS.

./system-info.sh

Ideal for grabbing high-level system metrics from the CLI.


🌦️ weather-check.sh

Fetches current weather and a 3-day forecast using wttr.in. Optionally takes a city name.

./weather-check.sh
./weather-check.sh Tokyo

Includes temperature, humidity, wind, moon phase, and more.


About

These are just a collection of random bash scripts I have found useful.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages