25.5k views
2 votes
. Use one command to create a /sales directory with the permissions of 770

1 Answer

3 votes

Answer:

mkdir -m 770 sales

Step-by-step explanation:

The command mkdir is used to create a directory and the attribute or flag

-m is used to assign permissions on create a folder.

Example:

mkdir -m 770 sales

Create a folder with permissions 770 with name sales

User Veeresh Patil
by
4.8k points