Sha256: c3af0399a9f33c140f4de6a0e15b6563bfd0e9a0b1e9dcdeeb85793205a06e70

Contents?: true

Size: 433 Bytes

Versions: 6

Compression:

Stored size: 433 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8
#
# Introduction:
#   Bidirectional synchronization tool for local file system
#
# Usage:
#   > bdsync_lfs --help
#
# Examples:
#   > bdsync_lfs --local_root_path /tmp/local_test --remote_root_path /tmp/remote_test
#   > bdsync_lfs -l /tmp/local_test -r /tmp/remote_test
#

require "optparse"
require "bdsync"

params = ARGV.getopts nil, *Bdsync::Lfs.options
Bdsync::Lfs.new(params).synchronize

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bdsync-2.3.1 exe/bdsync_lfs
bdsync-2.3.0 exe/bdsync_lfs
bdsync-2.2.0 exe/bdsync_lfs
bdsync-2.1.2 exe/bdsync_lfs
bdsync-2.1.1 exe/bdsync_lfs
bdsync-2.1.0 exe/bdsync_lfs