My build of nnn with minor changes
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

16 satır
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