1
0
Igor Shubovych 9 жил өмнө
parent
commit
ab54477533

+ 1 - 1
pages/common/chgrp.md

@@ -16,4 +16,4 @@
 
 - Change the owner of a file/folder to match a reference file:
 
-`chgrp --reference={{path/to/reference_file}} {{path/to/file}}
+`chgrp --reference={{path/to/reference_file}} {{path/to/file}}`

+ 2 - 2
pages/common/chown.md

@@ -2,7 +2,7 @@
 
 > Change user and group ownership of files and folders.
 
-- Change the owner user of a file/folder
+- Change the owner user of a file/folder:
 
 `chown {{user}} {{path/to/file}}`
 
@@ -10,7 +10,7 @@
 
 `chown {{user}}:{{group}} {{path/to/file}}`
 
-- Recursively change the owner of a folder and its contents
+- Recursively change the owner of a folder and its contents:
 
 `chown -R {{user}} {{path/to/folder}}`