My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
300 B

  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