Perl chown Function



Description

This function changes the owner (and group) of a list of files. The first two elements of the list must be the numeric uid and gid, in that order. This funcation call works in similar way as unix command chown. Thus you should have sufficient privilege to change the permission of the file.

Syntax

Following is the simple syntax for this function −

chown USERID, GROUPID, LIST

Return Value

This function returns the number of files successfully changed.

Example

Following is the example code showing its basic usage −

#!/usr/bin/perl

$cnt = chown $uid, $gid, 'foo', 'bar';
chown $uid, $gid, @filenames;
perl_function_references.htm
Advertisements