My build of nnn with minor changes
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

15 řádky
347 B

  1. #!/usr/bin/env sh
  2. # Description: Find and list files by mime type in smart context
  3. #
  4. # Shell: POSIX compliant
  5. # Author: Arun Prakash Jana
  6. . "$(dirname "$0")"/.nnn-plugin-helper
  7. printf "mime (e.g., video/audio/image): "
  8. read -r mime
  9. printf "%s" "+l" > "$NNN_PIPE"
  10. find . | file -if- | grep "$mime" | awk -F: '{printf "%s\0", $1}' > "$NNN_PIPE"