< Perl Programming < Keywords

The chmod keyword

chmod changes the permissions of a LIST of files. The first LIST element must be numeric and should be an octal number, like 0755 chmod returns the number of files successfully changed.

If the operating system supports fchmod(2), a FILEHANDLE can also be part of the list. If this is not the case, an exception is raised.

Syntax

  chmod LIST

Examples

chmod 0751 Boeing
Changes the access permission of file Boeing to read-write-execute for the user, to read-execute for the group of the user, and execute-only for the rest of users.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.