My build of nnn with minor changes
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- #!/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
|