All pastes #1657983 Raw Edit

drop

public shellscript v1 · immutable
#1657983 ·published 2009-11-05 05:57 UTC
rendered paste body
#!/bin/sh# No args, copy the current directory to your dropboxif [[ x"$1" = x ]]; then    cp -R . ~/Dropbox/${PWD##*/}# Copy all given filenames to your dropboxelse    cp -R "$@" ~/Dropbox/fi