2024-10-26 23:35:55 +02:00
|
|
|
Make it a little more concise, so that it can be included in this README.md:
|
|
|
|
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
# PATH-worthy Scripts 🛠️
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
A collection of useful scripts for your system PATH. Here's how to get started:
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
## Installation
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
```bash
|
|
|
|
# Clone the repository
|
|
|
|
git clone https://sij.ai/sij/pathScripts.git
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
# Add to PATH on macOS
|
|
|
|
echo 'export PATH="$PATH:$HOME/path/to/pathScripts"' >> ~/.zshrc
|
|
|
|
source ~/.zshrc
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
# Add to PATH on Debian/Ubuntu
|
|
|
|
echo 'export PATH="$PATH:$HOME/path/to/pathScripts"' >> ~/.bashrc
|
|
|
|
source ~/.bashrc
|
2024-10-26 22:57:27 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
Make scripts executable:
|
2024-10-26 22:57:27 +02:00
|
|
|
```bash
|
2024-10-26 23:09:48 +02:00
|
|
|
cd pathScripts
|
|
|
|
chmod +x *
|
2024-10-26 22:57:27 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
---
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
## 📄 bates - PDF Bates Number Tool
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
Extracts and renames PDFs based on Bates numbers.
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Setup
|
2024-10-26 22:57:27 +02:00
|
|
|
```bash
|
2024-10-26 23:09:48 +02:00
|
|
|
pip3 install pdfplumber
|
|
|
|
# For OCR support:
|
|
|
|
pip3 install pytesseract pdf2image
|
|
|
|
brew install tesseract poppler # macOS
|
|
|
|
# or
|
|
|
|
sudo apt-get install tesseract-ocr poppler-utils # Debian
|
2024-10-26 22:57:27 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Usage
|
2024-10-26 22:57:27 +02:00
|
|
|
```bash
|
2024-10-26 23:09:48 +02:00
|
|
|
bates /path/to/folder --prefix "FWS-" --digits 6 --name-prefix "FWS "
|
2024-10-26 22:57:27 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Key Features
|
|
|
|
- Extracts Bates numbers from text/scanned PDFs
|
|
|
|
- Renames files with number ranges
|
2024-10-26 23:37:21 +02:00
|
|
|
- Prepare files for use with my [Bates Source Link](https://sij.ai/sij/DEVONthink/src/branch/main/Bates%20Source%20Link.scpt#) DEVONthink script
|
2024-10-26 23:09:48 +02:00
|
|
|
- Preserves original names in Finder comments
|
|
|
|
- OCR support for scanned documents
|
|
|
|
- Dry-run mode with `--dry-run`
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Options
|
2024-10-26 22:57:27 +02:00
|
|
|
- `--prefix`: The Bates number prefix to search for (default: "FWS-")
|
|
|
|
- `--digits`: Number of digits after the prefix (default: 6)
|
|
|
|
- `--ocr`: Enable OCR for scanned documents
|
|
|
|
- `--dry-run`: Test extraction without renaming files
|
|
|
|
- `--name-prefix`: Prefix to use when renaming files
|
|
|
|
- `--log`: Set logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Examples
|
|
|
|
```bash
|
|
|
|
# Test without making changes
|
|
|
|
bates /path/to/pdfs --prefix "FWS-" --digits 6 --dry-run
|
2024-10-26 22:57:27 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
# Rename files with OCR support
|
|
|
|
bates /path/to/pdfs --prefix "FWS-" --digits 6 --name-prefix "FWS " --ocr
|
|
|
|
```
|
|
|
|
|
|
|
|
### Notes
|
2024-10-26 22:57:27 +02:00
|
|
|
- Always test with `--dry-run` first
|
|
|
|
- Original filenames are preserved in Finder comments (macOS only)
|
|
|
|
- OCR is disabled by default to keep things fast
|
2024-10-26 23:04:02 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
---
|
2024-10-26 23:04:02 +02:00
|
|
|
|
2024-10-26 23:35:55 +02:00
|
|
|
|
|
|
|
## kip - Intelligent Python Package Installer
|
|
|
|
|
|
|
|
A smart package installer that automates Python dependency management, supporting both mamba and pip.
|
|
|
|
|
|
|
|
### Setup
|
|
|
|
```bash
|
|
|
|
chmod +x kip
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
```bash
|
|
|
|
kip <package1> [<package2> ...] # Install specific packages
|
|
|
|
kip <script.py> # Install from Python file
|
|
|
|
kip -r <requirements.txt> # Install from requirements file
|
|
|
|
```
|
|
|
|
|
|
|
|
### Key Features
|
|
|
|
- Smart import detection in Python files
|
|
|
|
- Handles package name corrections automatically
|
|
|
|
- Uses mamba first, falls back to pip
|
|
|
|
- Supports multiple installation methods
|
|
|
|
- Filters out built-in modules
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
```bash
|
|
|
|
# Install single package
|
|
|
|
kip requests
|
|
|
|
|
|
|
|
# Analyze script and install dependencies
|
|
|
|
kip analysis.py
|
|
|
|
|
|
|
|
# Install from requirements
|
|
|
|
kip -r requirements.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
### Package Corrections
|
|
|
|
Automatically corrects common package names:
|
|
|
|
- `yaml` → `pyyaml`
|
|
|
|
- `dateutil` → `python-dateutil`
|
|
|
|
- `dotenv` → `python-dotenv`
|
|
|
|
- `newspaper` → `newspaper3k`
|
|
|
|
|
|
|
|
### Notes
|
|
|
|
- Requires Python 3.x
|
|
|
|
- Works with mamba or pip
|
|
|
|
- Provides clear installation feedback
|
|
|
|
- Ignores built-in modules and generic names
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
## 🔒 vpn - Tailscale Exit Node Manager
|
2024-10-26 23:04:02 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
Privacy-focused Tailscale exit node management.
|
2024-10-26 23:04:02 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Setup
|
2024-10-26 23:04:02 +02:00
|
|
|
```bash
|
|
|
|
pip3 install requests
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
```bash
|
2024-10-26 23:09:48 +02:00
|
|
|
vpn <action> # actions: start, stop, new, shh
|
2024-10-26 23:04:02 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Actions
|
2024-10-26 23:04:02 +02:00
|
|
|
- `start`: Connect to a suggested exit node if not already connected
|
|
|
|
- `stop`: Disconnect from current exit node
|
|
|
|
- `new`: Switch to a new suggested exit node
|
|
|
|
- `shh`: Connect to a random exit node in a privacy-friendly country
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Key Features
|
|
|
|
- Auto-connects to suggested nodes
|
|
|
|
- Privacy-friendly country selection (SE, CH, DE, FI, NL, NO)
|
|
|
|
- Connection verification via Mullvad API
|
|
|
|
- Default Tailscale arguments:
|
|
|
|
- `--exit-node-allow-lan-access`
|
|
|
|
- `--accept-dns`
|
|
|
|
- `--accept-routes`
|
2024-10-26 23:04:02 +02:00
|
|
|
|
|
|
|
### Examples
|
|
|
|
```bash
|
2024-10-26 23:09:48 +02:00
|
|
|
vpn start # Connect to suggested node
|
|
|
|
vpn shh # Connect via privacy-friendly country
|
2024-10-26 23:04:02 +02:00
|
|
|
```
|
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
### Verification
|
|
|
|
- Checks Tailscale's reported exit node
|
|
|
|
- Verifies connection using Mullvad's API
|
|
|
|
- Confirms hostname matches
|
2024-10-26 23:04:02 +02:00
|
|
|
|
|
|
|
### Notes
|
2024-10-26 23:09:48 +02:00
|
|
|
- Requires active Tailscale configuration
|
|
|
|
- Internet connectivity needed for verification
|
|
|
|
- Some commands may need admin privileges
|
|
|
|
|
|
|
|
---
|
2024-10-26 23:04:02 +02:00
|
|
|
|
2024-10-26 23:09:48 +02:00
|
|
|
_More scripts will be documented as they're updated. Each script includes `--help` for detailed usage information._
|