My build of nnn with minor changes
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

15 lines
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"