https://github.com/sumit-kushwah/scripts
Useful scripts
https://github.com/sumit-kushwah/scripts
bash scripts
Last synced: 2 months ago
JSON representation
Useful scripts
- Host: GitHub
- URL: https://github.com/sumit-kushwah/scripts
- Owner: sumit-kushwah
- Created: 2022-09-18T14:40:02.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T04:13:44.000Z (about 2 years ago)
- Last Synced: 2025-09-13T19:46:24.556Z (10 months ago)
- Topics: bash, scripts
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scripts
This project provides a convenient way to add aliases for frequently used commands.
## Getting Started
These instructions will guide you on how to use the aliases provided by this project.
### Prerequisites
- You need to have `python3` installed and available in your system's PATH.
- The `requirements.txt` file lists the Python dependencies needed for the script to run.
### Installation
1. **Clone the repository**
Use the following command to clone this repository:
```bash
git clone https://github.com/sumit-kushwah/scripts
2. **Install dependencies**
Navigate to the project directory and install the required Python dependencies using:
```bash
pip install -r requirements.txt
3. **Run the installation script**
Run the install.py script using Python 3. This script will add all the aliases available in the commands.json file to your shell's configuration file.
```bash
python3 install.py
```
Now, the setup is complete and you're ready to use the aliases.
### Usage
Here's an example of how to use one of the aliases:
```bash
gitreport -d ~/Development
```
This command will run the gitreport alias on all repositories in the ~/Development directory.
Note: Check `commands.json` for each alias.