• Stars
    star
    141
  • Rank 258,495 (Top 6 %)
  • Language
    Shell
  • License
    Other
  • Created about 14 years ago
  • Updated over 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

doubledown(1) -- sync local changes to a remote directory

SYNOPSIS

doubledown [-i identity] local [user@]server:remote

DESCRIPTION

doubledown brings local and remote on server into sync and then executes doubledown-fsevents(1) to watch local for changes.

An ssh-agent(1) is started if one cannot be found. Because doubledown will connect to server many times over its life, you must use an SSH key pair to authenticate. If you have not created an SSH key pair, do so with the following commands:

ssh-keygen -t rsa -b 2048 -f $HOME/.ssh/id_rsa
ssh <server> "echo $(cat $HOME/.ssh/id_rsa.pub) >>.ssh/authorized_keys"

When doubledown is run, rsync(1) is used to first download all files in remote on server that do not exist in local, thus no local changes will be clobbered. It then uploads any local changes. Finally, it executes doubledown-fsevents(1).

OPTIONS

  • -i identity: Use a non-standard identity (private key). Analogous to the -i option to ssh(1).
  • -h, --help: Show a help message.

THEME SONG

The Arcade Fire - "The Suburbs"

AUTHOR

Richard Crowley [email protected]

SEE ALSO

doubledown was written to make it easier for DevStructure users to use Textmate and other IDEs but it's far from the only way to skin the cat.

doubledown-fsevents(1) watches a directory and relays changes. It is called by doubledown.

The source code for doubledown is available at http://github.com/devstructure/doubledown.