Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

linux set permissions during copy

# Basic syntax:
install -m 755 /source/file.txt /destination
# Where:
#	- -m specifies the permission assigned to file.txt upon copy
# Note, install seemingly can't copy directories and files recursively, would
#	probably need to come up with some sort of "find...exec" command for that

# For ease of use, you can put this function in your bashrc file:
function ccp() {
	install -m 755 $1 $2
}
Source by ostechnix.com #
 
PREVIOUS NEXT
Tagged: #linux #set #permissions #copy
ADD COMMENT
Topic
Name
6+3 =