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.
これはばかげているように聞こえるかもしれませんが、実行する必要があるファイル/スクリプトがあり、それを実行するには、実行可能に変更する必要があります。chmod a+xまたはのいずれかを使用したいと思いますchmod 755。chmod a+xしかし、 と の使用に違いはありchmod 755ますか?
chmod a+x
chmod 755
確かにあります。
chmod a+x現在の状態に相対的であり、xフラグを設定するだけです。つまり、640 ファイルは 751 (または 750?) になり、644 ファイルは 755 になります。
x
chmod 755rwxr-xr-xただし、以前の状態に関係なく、マスクを次のように設定します。と同等chmod u=rwx,go=rxです。
rwxr-xr-x
chmod u=rwx,go=rx