Sha256: 1edb095ca2a5894e527851bfd06ecc10b0bf9505a1fad79039f0ec65cf04ea96

Contents?: true

Size: 1.08 KB

Versions: 22

Compression:

Stored size: 1.08 KB

Contents

#!/usr/bin/env ruby

require 'rbbt-util'
require 'rbbt/util/simpleopt'

$0 = "rbbt #{$previous_commands*""} #{ File.basename(__FILE__) }" if $previous_commands

options = SOPT.setup <<EOF

RSync a directory, commonly ~/.rbbt/ 

$ rbbt rsync [options] <source_location> <target_location> -- [rsync_options]

You can specify extra rsync options after --

-h--help Print this help
-e--exclude* Additional excludes separated by ','
-es--excludes* Replace exlude list with these; separated by ','
-t--test Do a verbose dry run
-p--print Print command
EOF
if options[:help]
  if defined? rbbt_usage
    rbbt_usage 
  else
    puts SOPT.doc
  end
  exit 0
end

excludes = %w(.save .crap .source tmp filecache  open-remote workflows apps software jobs sinatra PCAWG)
excludes += (options[:exclude] || "").split(/,\s*/)
excludes_str = excludes.collect{|s| "--exclude '#{s}'" } * " "

test_str = options[:test] ? '-nv' : ''

source, target, _sep, *other = ARGV

cmd = "rsync -a #{test_str} #{excludes_str} #{source} #{target} #{other * " "}"

if options[:print]
  puts cmd 
  exit 0
else
  CMD.cmd_log(cmd)
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
rbbt-util-5.23.9 share/rbbt_commands/rsync
rbbt-util-5.23.8 share/rbbt_commands/rsync
rbbt-util-5.23.7 share/rbbt_commands/rsync
rbbt-util-5.23.6 share/rbbt_commands/rsync
rbbt-util-5.23.5 share/rbbt_commands/rsync
rbbt-util-5.23.4 share/rbbt_commands/rsync
rbbt-util-5.23.3 share/rbbt_commands/rsync
rbbt-util-5.23.2 share/rbbt_commands/rsync
rbbt-util-5.23.1 share/rbbt_commands/rsync
rbbt-util-5.23.0 share/rbbt_commands/rsync
rbbt-util-5.22.5 share/rbbt_commands/rsync
rbbt-util-5.22.4 share/rbbt_commands/rsync
rbbt-util-5.22.3 share/rbbt_commands/rsync
rbbt-util-5.22.1 share/rbbt_commands/rsync
rbbt-util-5.22.0 share/rbbt_commands/rsync
rbbt-util-5.21.137 share/rbbt_commands/rsync
rbbt-util-5.21.136 share/rbbt_commands/rsync
rbbt-util-5.21.135 share/rbbt_commands/rsync
rbbt-util-5.21.134 share/rbbt_commands/rsync
rbbt-util-5.21.133 share/rbbt_commands/rsync