We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently cmds like see <(ls) - but they should not
see <(ls)
https://en.wikipedia.org/wiki/Process_substitution#Anonymous_named_pipe
There is no good way to support >(some command) though
>(some command)
the see tool should treat those like a pipe in and serialize them into tmp files to give to see to open transiently
also note that /dev/fd/0 and /dev/stdin should be treated the same as the - shortcut
/dev/fd/0
/dev/stdin
-
The text was updated successfully, but these errors were encountered:
monkeydom
No branches or pull requests
currently cmds like
see <(ls)
- but they should notinfos
https://en.wikipedia.org/wiki/Process_substitution#Anonymous_named_pipe
There is no good way to support
>(some command)
thoughproposed solution:
the see tool should treat those like a pipe in and serialize them into tmp files to give to see to open transiently
also note that
/dev/fd/0
and/dev/stdin
should be treated the same as the-
shortcutThe text was updated successfully, but these errors were encountered: