Copy files and set attributes. Copy files (often executable) to a system location like
/usr/local/bin
, give them the appropriate permissions/ownership.
install {{path/to/source}} {{path/to/destination}}
install -o {{user}} {{path/to/source}} {{path/to/destination}}
install -g {{user}} {{path/to/source}} {{path/to/destination}}
mode
:install -m {{+x}} {{path/to/source}} {{path/to/destination}}
install -p {{path/to/source}} {{path/to/destination}}