Monday, February 5, 2024

[SOLVED] Chmod permission of specific file extension under a folder via SSH

Issue

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?


Solution

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

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



Answered By - Guillaume
Answer Checked By - Terry (WPSolving Volunteer)