Move scripts into scripts folder

This commit is contained in:
Sebastian Cabrera 2025-03-13 17:07:22 -04:00
parent d19af4033b
commit 406c088547
2 changed files with 8 additions and 7 deletions

View file

@ -16,20 +16,21 @@ cd crunchbang
2. Make the scripts executable: 2. Make the scripts executable:
```bash ```bash
chmod +x *.sh chmod +x scripts/*.sh
``` ```
3. (Optional) Add the repository to your PATH: 3. (Optional) Add the scripts directory to your PATH:
```bash ```bash
echo 'export PATH="$PATH:$(pwd)"' >> ~/.bashrc echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.bashrc
# or for zsh # or for zsh
echo 'export PATH="$PATH:$(pwd)"' >> ~/.zshrc echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.zshrc
``` ```
## 🛠️ Available Scripts ## 🛠️ Available Scripts
Each script in this collection serves a specific purpose. Here's a brief overview of what's available: Each script in this collection serves a specific purpose. Here's a brief overview of what's available:
- `scripts/`: Directory containing all the bash scripts
- (Scripts will be listed here as they are added) - (Scripts will be listed here as they are added)
## 📖 Usage ## 📖 Usage
@ -37,7 +38,7 @@ Each script in this collection serves a specific purpose. Here's a brief overvie
Each script includes its own documentation and usage instructions. You can view the help for any script by running: Each script includes its own documentation and usage instructions. You can view the help for any script by running:
```bash ```bash
./script-name.sh --help ./scripts/script-name.sh --help
``` ```
## 🤝 Contributing ## 🤝 Contributing
@ -46,7 +47,7 @@ Contributions are welcome! If you have a useful bash script that you'd like to s
1. Fork the repository 1. Fork the repository
2. Create a new branch for your feature 2. Create a new branch for your feature
3. Add your script to the root directory 3. Add your script to the `scripts/` directory
4. Update the README with information about your script 4. Update the README with information about your script
5. Submit a pull request 5. Submit a pull request