group-execute? ( obj -- ? ) (original) (raw)
group-execute? ( obj -- ? )
Unix file attributes » Unix file permissions
Prev: | group-write? ( obj -- ? ) |
---|---|
Next: | other-read? ( obj -- ? ) |
Inputs
obj | a pathname string or an integer |
---|
Outputs
? | a boolean |
---|
Word description
Tests whether the group execute bit is set on a file, file-info, or an integer.
Definition
USING: io.files.info.unix.private ;
: group-execute? ( obj -- ? ) GROUP-EXECUTE file-mode? ;