Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的文件夹是/images/. 此文件夹中有.png,.gif和.jpg图像。如何.jpg通过SSH将文件夹下特定文件扩展名的权限更改为644?
/images/
.png
.gif
.jpg
使用 ssh 连接到远程计算机,然后执行此命令可能会起作用:
find /images/. -name "*.jpg" | xargs chmod 644