Page History
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ ls -lahd test/ drwxr-xr-x 2 <username><user1> csstaff 4.0K Feb 23 13:46 test/ |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ getfacl test # file: test # owner: <username><user1> # group: csstaff user::rwx group::r-x other::r-x |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ setfacl -m user:<username><user2>:rw test/ $ getfacl test/ # file: test # owner: <username><user1> # group: csstaff user::rwx user:<username><user2>:rw group::r-x mask::rwx other::r-x |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ setfacl -x user:<username><user2> test/ $ getfacl test/ # file: test # owner: <username><user1> # group: csstaff user::rwx group::r-x mask::rwx other::r-x |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ setfacl -dm user:<username><user2>:rw test/ $ getfacl test # file: test # owner: <username><user1> # group: csstaff user::rwx group::r-x mask::rwx other::r-x default:user::rwx default:user:<username><user2>:rw default:group::r-x default:mask::rwx default:other::r-x |
...