Quote:
Originally Posted by FlorenceArt
Code:
python ineptepub.py adeptkey.der booknamedrm.epub booknamenodrm.epub
Since I type everything manually, I often shorten the file name of the book too. I have copied the code line to a text file as a reminder, but in fact I almost never re-type it completely: in the Terminal, you can use the up arrow to recall the last few lines you typed and change them. It will even remember them from one session to the next, which is cool.
|
You might simulate an ainept script with a little shell magic
for i in $(ls *epub); do python ineptepub.py adeptkey.der $i ${i}encryped.epub; done