• 10 Posts
  • 25 Comments
Joined 3 months ago
cake
Cake day: January 14th, 2025

help-circle
rss








  • This tool is very powerful! Just what I needed, thanks again. Turns out you need pandoc 3+ and linux mint repo has 2.9, so after upgrading that rga started working, but it still throws this error from time to time:

    
    parseSpine
    Error: copying adapter output to stdout
    
    Caused by:
        0: subprocess: Command { std: "pandoc" "--from=epub" "--to=plain" "--wrap=none" "--markdown-headings=atx", kill_on_drop: false }
        1: ExitStatus(unix_wait_status(16384))
    

    I will have to keep looking into it, I’m not sure if this error stops the search in it’s tracks.














  • 😍😍😍😍 thanks harsh!! I’ll study this and report back. I really appreciate your time and effort. There is a lot to learn here, and actually the padding is on my list of things to learn, so thank you sensei! As to your question about the integers, the files need to be in alphabetical order before getting the integer prepended to them, so like

    • folder1/file1
    • folder1/file2
    • folder2/file1
    • folder2/file2
    • folder2/file3

    turns to

    • folder1/001file1
    • folder1/002file2
    • folder2/003file1
    • folder2/004file2
    • folder2/005file3

    that way in the folder when it’s all said and done I’ll have

    • 001file1
    • 002file2
    • 003file1
    • 004file2
    • 005file3

    I’ll check if your method works out of the box for that or if I have to use the sort function like you showed me last time. Thanks again!