0
Q
權限代碼澄清需要
A
回答
2
+rx
手段:添加讀取和執行權限(555)減去umask的位的默認權限。
通常,umask是022和默認權限644,所以結果將是755
計算0644 | (0555 & ~0022)
:
+rx : 555 -> 101 101 101
Umask : 022 -> 000 010 010 &~
======================
Add these perms : 555 -> 101 101 101
Default permissions: 644 -> 110 100 100 |
======================
Result : 755 -> 111 101 101
相關問題
- 1. 「期限矢量API」需要澄清
- 2. 需要澄清NSAutoreleasePool
- 3. ApplicationDomain澄清需要
- 4. 需要澄清UIApplicationState
- 5. ConcurrentModificationException,需要澄清
- 6. InsertHelper澄清需要
- 7. 需要澄清Datatable
- 8. drawAtPoint,澄清需要
- 9. previousLocationInView,澄清需要
- 10. NSFetchedResultsController:DOC澄清需要
- 11. rootViewController澄清需要
- 12. 澄清代碼
- 13. 在Objective-C的代表,澄清需要
- 14. AJAX代碼澄清
- 15. 行代碼澄清
- 16. 需要澄清毒斑點
- 17. Angular2 - Keyup需要澄清
- 18. On UnsatisfiedLinkError,需要澄清
- 19. 需要澄清認識_.some()
- 20. 需要澄清SVN恢復
- 21. 錯誤C2664,需要澄清
- 22. IDEA項目,需要澄清
- 23. Objective-C,UITableView,需要澄清
- 24. ASP.NET TextBox:TextChanged - 需要澄清!
- 25. Objects.hash()VS Objects.hashCode(),澄清需要
- 26. 在NSRunLoop,澄清需要
- 27. Axis2/WSO2 ESB - 需要澄清
- 28. UINavigationController TitleView - 需要澄清
- 29. Struts 2需要澄清
- 30. Angular 4 - * ngComponentOutlet澄清需要
的umask是減去按位,而不是異或與他們:'燙髮&〜umask'。 – 2011-03-28 20:21:00
@larsmans:更正,謝謝。 – Lekensteyn 2011-03-28 20:28:04
不應該是'(0644 | 0555)&〜0022' – Olayinka 2015-01-06 19:47:40