My build of nnn with minor changes
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

15 líneas
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"