Skip to content

Instantly share code, notes, and snippets.

@tektoh
Created May 12, 2020 01:36
Show Gist options
  • Save tektoh/6093414c3b233f6d79972ed786b35c65 to your computer and use it in GitHub Desktop.
Save tektoh/6093414c3b233f6d79972ed786b35c65 to your computer and use it in GitHub Desktop.
dropboxignore
function dropboxignore() {
dropboxignore=~/Downloads/dropboxignore
if [ ! -e "$dropboxignore$PWD/$1" ]; then
mkdir -pv $dropboxignore$PWD
mv -v $1 $dropboxignore$PWD/$1
fi
ln -Fsv $dropboxignore$PWD/$1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment