My build of nnn with minor changes
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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