blob: a6ca475a6fbbebaf98b16c09fb512fb5d46811dd (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/usr/local/bin/bash
# Set the directory to search (replace with your actual path)
TARGET_DIR="."
# Function to process each .org file
# Find all .org files recursively
find "$TARGET_DIR" -type f -name "*.org" -exec emacs {} --batch -f org-html-export-to-html --kill \;
|