rsync 标志与 `-a` 的 `-D` 和 `-g` 标志混淆

rsync 标志与 `-a` 的 `-D` 和 `-g` 标志混淆

似乎通常使用等于的rsync标志来调用-a-rlptgoD (no -H,-A,-X)

    -g, --group                 preserve group
        --devices               preserve device files (super-user only)
        --specials              preserve special files
    -D                          same as --devices --specials

我感到困惑的是为什么-a包括-g-D-g似乎可以完成所有-D事情,那么为什么要包括-D

答案1

你搞错了。-g等于--group,它不包括--devices--specials。缩进不是为了对功能进行分组,更像是一个有 3 列的表格,其中包含短开关、长开关和描述,其中--devices--specials没有简短形式。

相关内容