Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

is possible to filter a directory content based on its file's permission?

1 Answer

0 votes
by

No internal means for that, but custom view could be used to do such filtering:

command! perm :select * | !stat -c'%%%%A/%%%%n' %%f | grep '^.%a' | cut -d/ -f1 --complement %%u

perm rwx
perm .w.
by

I would have preferred using the integrated filter like function to be honest, but thank you for giving me an alternave

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...