Choosing this option pops up the Foam widget (File Ownership and Access Manager) as shown:
The file selected appears in the File box. More than one file may appear in this box, separated by spaces, if they were multi-selected before this option was called up.
chmod 754 myexec (Simple file naming)or
chmod 754 [aA]temp*.c (A set of files specified through a regular expression)or
for i in myexec templist a.out; do chmod 754 $i done (A set of files specified through mouse selection)or
find . -name blah\* -type f -exec chmod 754 {} \; (A set of files specified through a find condition)
The current file owners (user or group) will be highlighted in these selction windows by default. File ownership can be changed by selecting a different user and/or group from these selection windows. Read, Write and Execute permissions can be changed by checking different checkboxes. If a permission is to be granted to all, the corresponding All checkbox can be checked. All the checkboxes in that column will automatically be checked.
The Run as checkboxes set the S-bits of the file to change the effective user ID and effective group ID of the process running it. As before, checking the Run as checkbox for All will automatically set both the uid and gid.