View Single Post
Old 09-26-2008, 01:02 PM   #6
pilotbob
Grand Sorcerer
pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.
 
pilotbob's Avatar
 
Posts: 19,832
Karma: 11844413
Join Date: Jan 2007
Location: Tampa, FL USA
Device: Kindle Touch
Quote:
Originally Posted by sirdouglas View Post
Eek, batch file? Unfortunately I'm not that knowledgeable with this computer stuff.
Don't be scared. A batch file is nothing more than a series of commands that you would type into the command prompt all place together. You can do some basic things to each file with a simple for command.

A simple example. Lets say to add a .PRC file to Mobipocket you could do this at the command line:

mobireader /add MYfilename.prc

So, you could use the following command to add all the .prc files in a folder:

for %%i in (*.prc) do mobireader /add %%i

If you put than in a batch file named add2mobi.bat then you can just run that bat file anytime by double clicking it.

BOb
pilotbob is offline   Reply With Quote