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,28 +16,29 @@ cd crunchbang
2. Make the scripts executable:
```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
echo 'export PATH="$PATH:$(pwd)"' >> ~/.bashrc
echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.bashrc
# or for zsh
echo 'export PATH="$PATH:$(pwd)"' >> ~/.zshrc
echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.zshrc
```
## 🛠️ Available Scripts
Each script in this collection serves a specific purpose. Here's a brief overview of what's available:
- (Scripts will be listed here as they are added)
- `scripts/`: Directory containing all the bash scripts
- (Scripts will be listed here as they are added)
## 📖 Usage
Each script includes its own documentation and usage instructions. You can view the help for any script by running:
```bash
./script-name.sh --help
./scripts/script-name.sh --help
```
## 🤝 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
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
5. Submit a pull request