https://github.com/kuro-jojo/scripts
A collection of useful shell scripts for various tasks. These scripts can be easily installed to your system's PATH for convenient access.
https://github.com/kuro-jojo/scripts
bash scripting
Last synced: 2 months ago
JSON representation
A collection of useful shell scripts for various tasks. These scripts can be easily installed to your system's PATH for convenient access.
- Host: GitHub
- URL: https://github.com/kuro-jojo/scripts
- Owner: kuro-jojo
- License: apache-2.0
- Created: 2025-06-17T17:45:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-31T15:15:06.000Z (6 months ago)
- Last Synced: 2026-01-04T23:40:38.952Z (6 months ago)
- Topics: bash, scripting
- Language: Shell
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scripts Collection
A collection of useful shell scripts for various tasks. These scripts can be easily installed to your system's PATH for convenient access.
## Installation
1. Clone this repository:
```bash
git clone https://github.com/kuro-jojo/scripts.git
cd scripts
```
2. Make the installation script executable:
```bash
chmod +x install-scripts.sh
```
3. Run the installation script with sudo:
```bash
sudo ./install-scripts.sh
```
This will install all scripts listed in `script_list.txt` to `/usr/local/bin/`.
## Usage
### Available Scripts
- `install-scripts` - Install all scripts to /usr/local/bin
- `fwatch` - File watcher script (available on GitHub: https://github.com/kuro-jojo/file-organizer)
- `pat` - Copy file contents to clipboard using xclip or xsel
- `swap` - Reallocate the swap file
- `toolfinder` - Find and display information about tools 
### Custom Script List
To use a custom list of scripts for installation:
```bash
sudo ./install-scripts.sh -f /path/to/custom_script_list.txt
```
## Adding New Scripts
1. Add your script to this directory
a. Make it executable: `chmod +x script_name`
b. Add it location to `script_list.txt`
2. Or add it location to `script_list.txt` directly
3. Run the installation script
## License
The scripts in this repository are licensed under the MIT [LICENSE](LICENSE).
## Contributing
Feel free to submit issues and enhancement requests.