Linux définir les autorisations pendant la copie
# 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
}
Charles-Alexandre Roy