Hi Cornelius,
for spatially distinct study sites, I commonly use different pools to keep things simple. But one pool is okay, too, of course. Just more management.
How many images do you have that this becomes an issue? FORCE uses "grep" to filter for the "QUEUED" images. This is a fairly efficient and standard Unix operation.
If you want to extract some subset, you could use: grep T33UUU queue.txt > newqueue.txt
You can also set not-needed images to anything else, e.g. IGNORE: sed -i '/T33UUU/s/QUEUED/IGNORE/g'
For re-queueing all files, you can do : sed -i 's/DONE/QUEUED/' queue.txt
For re-queueing specific files, use: sed -i '/T33UUU/s/DONE/QUEUED/g'
Basically, a variety of "grep" and "sed" commands work very well in most cases. If you need something more advanced, I recommend using a scripting language.
Does this help?
Cheers,
David