Chmod permission of specific file extension under a folder via SSH

chmod, ssh

Solution

Connect to the remote computer with ssh and then execute this command may work:

`find /images/. -name "*.jpg" | xargs chmod 644`

Problem

My folder is `/images/`. There are `.png`, `.gif` and `.jpg` images in this folder. How do I change permissions of specific file extension `.jpg` to 644 under the folder via SSH?

Original source