tmp/tmp8m_6ask3/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: Enum class `perm_options`** <a id="fs.enum.perm.opts">[fs.enum.perm.opts]</a>
|
| 2 |
+
|
| 3 |
+
| Name | Meaning |
|
| 4 |
+
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 5 |
+
| `replace` | `permissions` shall replace the file's permission bits with `perm` |
|
| 6 |
+
| `add` | `permissions` shall replace the file's permission bits with the bitwise \logop{OR} of `perm` and the file's current permission bits. |
|
| 7 |
+
| `remove` | `permissions` shall replace the file's permission bits with the bitwise \logop{AND} of the complement of `perm` and the file's current permission bits. |
|
| 8 |
+
| `nofollow` | `permissions` shall change the permissions of a symbolic link itself rather than the permissions of the file the link resolves to. |
|
| 9 |
+
|