set-other-write ( path ? -- ) (original) (raw)
set-other-write ( path ? -- )
Unix file attributes » Unix file permissions
Prev: | set-other-read ( path ? -- ) |
---|---|
Next: | set-other-execute ( path ? -- ) |
Inputs
path | a pathname string |
---|---|
? | a boolean |
Outputs
None
Word description
Sets the other execute bit of a file to true or false.
Definition
USING: io.files.info.unix.private kernel ;
: set-other-write ( path ? -- ) OTHER-WRITE swap chmod-set-bit ;