View Single Post
Old 12-15-2023, 11:15 PM   #518
jnote
Junior Member
jnote began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Dec 2023
Device: kindle oasis 3
for windows

Quote:
Originally Posted by JimmXinu View Post
Glad you got it working.

FYI, you can save several steps like so:
Code:
find ~/Documents/mergeTest/ -type f -print0 | xargs -0 calibre-debug --run-plugin EpubMerge --
thanks for the tip

and gpt4 create this batch file, it works well
(assuming that calibre-debug included in your windows path)

Code:
@echo off
setlocal enabledelayedexpansion

set FILES=
for %%f in ("C:\your_path\*.epub") do (
    set FILES=!FILES! "%%f"
)

calibre-debug --run-plugin EpubMerge -- %FILES%
jnote is offline   Reply With Quote