some command allows me to generate a file with the cmd log when reimporting?
I use quickbms to modify a pkg file... when reimporting the files are saved in different pkg files... so I would like to create a log to tell me which files were modified?
Ty
Can make file whit reimport log ?
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: Can make file whit reimport log ?
So, if I understand correctly, you only want quickbms to show you the names of the files that have been reimported, correct?
That's already done by default where you will see a < character at the left of the filename, so if you don't see any filename it means nothing was reimported.
Instead if you want to create a file during the reimporting process... I guess that's not possible because all the log/clog/slog operations are reversed so you can only control the output to the console by using the Print command, maybe you can use it in this way:
Then launch quickbms from command-line redirecting the output to file with grep:
Something like that may work for your needs
That's already done by default where you will see a < character at the left of the filename, so if you don't see any filename it means nothing was reimported.
Instead if you want to create a file during the reimporting process... I guess that's not possible because all the log/clog/slog operations are reversed so you can only control the output to the console by using the Print command, maybe you can use it in this way:
Code: Select all
print "XXX file %NAME% of offset %OFFSET|x% size %SIZE|x% processed"
Then launch quickbms from command-line redirecting the output to file with grep:
Code: Select all
quickbms -r -r -w script.bms FILE FOLDER | grep XXX > output.txt
Something like that may work for your needs