在 bash 中应用 CHMOD 和压缩文件

Applying CHMOD and zipping a file in bash

在应用 chmod 之前还是之后对文件进行 gzip 比较好。

如果我应用 chmod,然后 gzip,然后解压缩,它会保留 chmod 吗?

来自man gzip

gzip preserves the mode, ownership and timestamps of files when compressing or decompressing.

也就是说,在压缩时,压缩后的文件将与原文件拥有相同的所有权和权限。解压时,解压后的文件将拥有与.gz文件相同的所有权和权限。

所以,不,gzip 或 chmod 的顺序无关紧要。