linux 中 o+t 的数字权限是多少
What is the number permission for o+t in linux
o+t的号码权限是多少
它必须接近 1755,但那是不对的。
使用 chmod o+t mydir。我得到 drwxrwsr-t
使用 chmod 1755 mydir。我得到 d-wx-ws--t
我想知道o+t的权限是多少
很容易发现:
touch test
chmod 0000 test
chmod o+t test
stat test
... 给你:1000(八进制)
o+t的号码权限是多少
它必须接近 1755,但那是不对的。
使用 chmod o+t mydir。我得到 drwxrwsr-t
使用 chmod 1755 mydir。我得到 d-wx-ws--t
我想知道o+t的权限是多少
很容易发现:
touch test
chmod 0000 test
chmod o+t test
stat test
... 给你:1000(八进制)