Answers for "change owner of file in linux"

4

change user linuxcommand ch

chown USER:GROUP FILE

Change the user and grop for an entire folder:
chown -R USER:GROUP FILE
Posted by: Guest on June-30-2020
-1

ubuntu change directory owner

sudo chown -R $USER ~/.blabla
Posted by: Guest on October-07-2020
1

how to change owner of all files in a directory

# Using the '*' wildcard you can include all other files and dirs
# Only us as many wildcards as you have layers in you directory
sudo chown <username:username> <directory_name>/*/*
Posted by: Guest on July-29-2020
0

change owner of file in linux

chown USER:GROUP FILE
Posted by: Guest on July-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language