My folder has 10,000 files and I need to look through all of them. They are all called: A0001.png, A0002.png, A0003.png,...A0100.png,...A0999.png,.. A1000.png,...A09999.png,...A10000.png.
I want to open them ten at a time, look through them, close them, and open the next ten, but I'm still getting familiar with using the terminal, so I'm not sure how to do that?
When I do:
open A000*.png
It opens too many.
open A000X
command over a file A00X ? – GC 13 Mar 09 '17 at 19:31open
. So if you want to open some image file called image.png, then you would just typeopen image.png
and it will open with whatever software you use to open .png files. – Guest Mar 09 '17 at 20:54