Quote:
Originally Posted by eschwartz
I am not a Mac person and don't plan on becoming one, but according to stackoverflow you can create an Automator app:
|
Thanks! The particular code you suggested didn't work for me, and anyway I only want to launch one book at a time. I used this instead:
Code:
while ( $# )
ebook-edit "$1"
shift
end
and everything worked swimingly.
Further details, for others who might want to do this, in the Automator dialog:
Shell:/bin/csh
Pass Input: as arguments
EDIT: I should have realized, but this script will
only take books dropped on it. It does not launch the program independently. That's ok for me, but you may have a different work flow.