1
1
mirror of https://github.com/jarun/nnn.git synced 2024-09-19 08:47:13 +03:00
nnn/plugins/mimelist

22 lines
451 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
# Description: Run fd/find in subtree and list files by mime type in smart context
2020-05-06 08:29:57 +03:00
# Dependencies: fd/find
#
# Shell: POSIX compliant
2020-05-04 03:47:38 +03:00
# Author: Arun Prakash Jana
. "$(dirname "$0")"/.nnn-plugin-helper
if [ "$(cmd_exists fd)" -eq "0" ]; then
fd=fd
else
fd=find
fi
2020-11-12 05:47:14 +03:00
printf "mime (e.g., video/audio/image): "
read -r mime
printf "%s" "+l" > "$NNN_PIPE"
$fd | file -if- | grep "$mime" | awk -F: '{printf "%s\0", $1}' > "$NNN_PIPE"