blob: 02b9a0feef991b6bfcd414adb1d07356b016f9b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env sh
# Description: Open a quick notes file or directory in $EDITOR
#
# Details: Set the variable NOTE to the path to your quick notes file
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
NOTE=
# NOTE=~/Dropbox/Notes/synced_note
if [ ! -z "$NOTE" ]; then
$EDITOR "$NOTE"
fi
|