Replies: 2 comments
-
Please do, but check all plugins for this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
PR submitted. And BTW, using
So the last line of the plugin could be: if type mimetype >/dev/null 2>&1; then
find . | mimetype -f - | grep "$mime" | awk -F: '{printf "%s%c", $1, 0}' > "$NNN_PIPE"
else
find . | file -if- | grep "$mime" | awk -F: '{printf "%s%c", $1, 0}' > "$NNN_PIPE"
fi |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
This took me time (and drove me crazy) to find why I could use the mimelist plugin on one computer and not on the other!
The mimelist plugin uses
but this is only working with Gnu Awk…
According to this stackoverflow thread, I changed it to
and now it works correctly.
I can provide a PR if needed.
Cheers
Beta Was this translation helpful? Give feedback.
All reactions