zoukankan      html  css  js  c++  java
  • rsync 常用选项

      rsync基于ssh协议实现高效率远程或本地文件复制,传输速度比scp快。复制文件时会比对本地文件与远程主机的文件,仅复制有差异的文件。

    常用选项

    -q,--quiet:suppress non-error messages 静默模式
    -v,--verbose:increase verbosity
    -a,--archive:archive mode; equals -rlptgoD (no -H,-A,-X) 归档模式,相当于-rlptgoD,不包括(no -H,-A,-X);最常用的参数
    -H,--hard-links:preserve hard links 保留硬链接
    -A,--acls:preserve ACLs (implies --perms) 保留ACL权限
    -X,--xattrs:preserve extended attributes 保留扩展属性
    -c, --checksum:skip based on checksum, not mod-time & size
    -r,--recursive:recurse into directories 递归
    -l,--links:copy symlinks as symlinks 保留软链接,而不跟踪原文件
    -p,--perms:preserve permissions 保留权限
    -t,--times:preserve modification times 保留mtime
    -g,--group:preserve group 保留属组
    -o,--owner:preserve owner (super-user only) 保留属主
    -D:same as --devices,--specials 保留设备文件和特殊文件
    --devices:preserve device files (super-user only)
    --specials:preserve special files
    
    -z,--compress:compress file data during the transfer 输过程中压缩文件数据
    -n, --dry-run:perform a trial run with no changes made 干跑测试
    -u,--update:skip files that are newer on the receiver 增量同步,跳过比本地较新的文件
    --delete:delete extraneous files from destination dirs 删除目标目录多余文件
    --progress:show progress during transfer 显示传输进度
  • 相关阅读:
    SourceTree 3.3.6安装跳过注册安装
    Qt Framework 问题之 framework/Versions/A:bundle format unrecognized, invalid, or unsuitable
    数据结构之栈
    数据结构之单链表
    数据结构之数组
    QPixmap 在非QtCreator环境下无法显示jpg图片
    Mac端StartUML的安装和破解
    C++实现根据路径读取文件内容
    迁移至知乎
    XDRender_LightModeFeature_CauseLight 焦散1-DropRain
  • 原文地址:https://www.cnblogs.com/galsnag/p/12323122.html
Copyright © 2011-2022 走看看