Skip to content

Instantly share code, notes, and snippets.

@douglashill
Created January 16, 2014 11:00
Show Gist options
  • Save douglashill/8453063 to your computer and use it in GitHub Desktop.
Save douglashill/8453063 to your computer and use it in GitHub Desktop.
Opens a text editor ready to write a note, assuming notes are stored as text files in a Notes folder in Dropbox.
#! /bin/bash
NOTE_PATH=~/Dropbox/Notes/New\ note\ `date "+%H-%M-%S"`.txt
touch "$NOTE_PATH"
open "$NOTE_PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment