My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

16 lignes
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