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.
 
 
 
 
 
 

19 satır
429 B

  1. #!/usr/bin/env sh
  2. # Description: Fuzzy find executables in $PATH and launch an application.
  3. # stdin, stdout, stderr are suppressed so CLI utilities exit silently.
  4. # Works as an independent app launcher.
  5. #
  6. # Shell: POSIX compliant
  7. # Author: Arun Prakash Jana
  8. IFS=':'
  9. get_selection() {
  10. ls -H $PATH | sort | fzy
  11. }
  12. if selection=$( get_selection ); then
  13. "$selection" 2>/dev/null 1>/dev/null &
  14. fi