Linux - How to list folders which have png image, List directories containing only PNG images
How to list folders which have png image
How to search png image or files in directory or folders?The below command will help you to list only the folder or directories which have png images.
find . -name '*png' -printf '%h\0' | xargs -0 ls -l --hide=*.png | grep -ZB1 ' 0$'
The topic on Linux - How to list folders which have png image is posted by - Malu
Hope you have enjoyed, Linux - How to list folders which have png imageThanks for your time