Skip to content

Instantly share code, notes, and snippets.

@btobolaski
Created October 2, 2012 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btobolaski/3815976 to your computer and use it in GitHub Desktop.
Save btobolaski/3815976 to your computer and use it in GitHub Desktop.
This script copies the files from my Drafts app folder to my notes folder
#!/bin/bash
find ~/Dropbox/Apps/Drafts -maxdepth 1 -mindepth 1 -not -name Journal.txt -print0 | xargs -0 mv -t ~/Dropbox/Notes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment