swbox v0.0.13
swbox
A command line interface for editing files from your box, on your local machine.
The perfect partner if you're developing ScraperWiki tools, and want to use your normal text editor like TextMate or Sublime Text.
Supports two alternative workflows:
- Copying the remote box files to your local machine, then pushing changes.
- Mounting the remote box as a local filesystem, using SSHFS.
Examples
swbox clone fegy5tq – Makes a local copy of fegy5tq@box.scraperwiki.com
swbox clone g6ut126@free - Makes a local copy of g6ut126@free.scraperwiki.com
swbox mount fegy5tq - Mounts fegy5tq@box.scraperwiki.com as a local filesystem
How to use
Git clone the swbox repo to somewhere safe.
cd ~ # feel free to change this directory git clone git://github.com/scraperwiki/swbox.git cd swboxAdd swbox to your $PATH, so you can type "swbox" from anywhere on your filesystem.
ln -s $(pwd)/swbox.coffee /usr/local/bin/swboxRead the documentation by running
swbox help
Requirements
Mounting boxes as local drives requires Fuse and SSHFS. Both are available on the Fuse for OS X homepage.
The swbox command line client requires Node.js and CoffeeScript to be installed. swbox update requires Git.
Changelog
0.0.9 – set-top box
- Rsync reports of "Permanently added url to the list of known hosts" no longer fool swbox into thinking the
push/cloneoperation failed. - Mentions of "beta.scraperwiki.com" changed to "scraperwiki.com"
0.0.8 – post box
swbox push --previewwill show a preview of what would be created/updated/deleted, without changing anything on the remote box.
0.0.7 – heart shaped box
<boxName>can now include an optional@boxServersuffix, allowing you to clone and mount boxes on free.scraperwiki.com and ds.scraperwiki.com (eg: viaswbox clone abcd123@freeorswbox mount wxyz789@ds)
0.0.6 – junction box
swbox syncrenamed toswbox pushsince it doesn't actually sync, it removes any files on the destination that aren't present on the local copy.- fixed a bug that caused
swbox sync/pushto loop forever when invoked outside of a local box clone swbox cloneno longer takes an optional destination directory – it will always create a clone, in new directory named after the box, in the current working directory- removed
/swboxsymbolic link in root directory – it's no longer needed - standardised display of required and optional arguments in help messages
0.0.5 – hotbox
swbox synccommand to synchronise local changes inside a clone, back up to the original box
0.0.4 – chocolate box
swbox clonecommand to clone an entire box's contents to your local filesystem
0.0.3 – cereal box
- added
-oworkaround=renameto sshfs options, to allowrsyncandgitto rename/update files
0.0.2 – cardboard box
swbox updatecommand to download the latest version of swbox
0.0.1 – Initial release
- mounting and unmounting boxes as sshfs drives
- license, help and docs