From 406c0885476efb98195267bbba31262266d8c7f2 Mon Sep 17 00:00:00 2001 From: Sebastian Cabrera Date: Thu, 13 Mar 2025 17:07:22 -0400 Subject: [PATCH] Move scripts into scripts folder --- README.md | 15 ++++++++------- movefiles.sh => scripts/movefiles.sh | 0 2 files changed, 8 insertions(+), 7 deletions(-) rename movefiles.sh => scripts/movefiles.sh (100%) diff --git a/README.md b/README.md index bd5ecb6..1f954a2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/movefiles.sh b/scripts/movefiles.sh similarity index 100% rename from movefiles.sh rename to scripts/movefiles.sh