drop
public shellscript v1 · immutable#!/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#!/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