Jan 12, 2001 #1 071 MIS Joined Aug 9, 2000 Messages 153 I need to change a file to the following permissions, -rwxr-xr-x Anyone know how to do this numerically ?
I need to change a file to the following permissions, -rwxr-xr-x Anyone know how to do this numerically ?
Jan 12, 2001 #2 grega Programmer Joined Feb 2, 2000 Messages 932 Location GB 071, chmod 755 filename Using octal notation, file permissions are split into 3 parts, and for each part, just add up the permissions you want. Code: - 4 2 1 4 2 1 4 2 1 - r w x r w x r w x Greg. Upvote 0 Downvote
071, chmod 755 filename Using octal notation, file permissions are split into 3 parts, and for each part, just add up the permissions you want. Code: - 4 2 1 4 2 1 4 2 1 - r w x r w x r w x Greg.
Jan 12, 2001 Thread starter #3 071 MIS Joined Aug 9, 2000 Messages 153 Thanks Greg, that did the job ! Upvote 0 Downvote