Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

rsync

Sync with different/group user and perm

Sample: rsync -qogprltD --chmod=[ugo]=[rwxX] --chown <user>:<group>

$ rsync  -qogprltD --chmod=ug=rwX --chmod=o=rX --chown $(whoami):nicegroup
$ rsync -av --link-dest="${source}/" "${source}/" "${destination}/"

all purpose rsync keeping owner, timestamp, group, recursive and displaying progress + resumeable

$ rsync -aP "${source}/" "${destination}/"