> similarly, is there a way to get "display *jpg" to open all the images
> at the same time, each in a separate window?

How about something like this:

for $f in (*.jpg) do display $f

interesting syntax. i do not understand in detail.  which shell are you using?

in bash, i'd use

## for f in *jpg; do display $f; done

is this similar? the bash line serially starts a new process for each
image. but even if i did this:

## display 1.jpg &
## display 2.jpg &

it is not possible to copy/paste (for example) between the two images.
and if i do this:

## display 1.jpg &
## display -remote 2.jpg &

display ends up loading 2.jpg in the same window that held 1.jpg

any ideas?

best,
mike
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to