Manage permission of files and folders in the Terminal for Mac OS X

Manage permission of files and folders in the Terminal for Mac OS X

Permission Permissions can be set in two different ways: Symbolic mode and Numeric mode.We are now going to explain these two options. Setting permissions with Symbolic values (Symbolic mode) When setting permissions with symbolic values you’re mostly going to use three different letters:

Read More Manage permission of files and folders in the Terminal for Mac OS X

Manage files and folders directly from the Terminal window in Mac OS X

Manage files and folders directly from the Terminal window in Mac OS X

Below is a collection of commands and functions used for managing files and folders in the terminal on Mac OS X. Commands for managing files and directories in Terminal cd Change working directory of the Terminal. ls Find out which

Read More Manage files and folders directly from the Terminal window in Mac OS X

chown – change owner of a file or folder

chown - change owner of a file or folder

Syntax:chown <new owner>(:<new group>) <file/directory> Explanation:chown is an abbreviation for change owner.With chown you can change the owner of a certain file or folder. Examples chown john myfile.txt  Change the owner of the file “myfile.txt” to the user called “john”. chown john:group2 myfile.txt  Change the owner and group membership

Read More chown – change owner of a file or folder