6 ms·
Redirection is not a parameter, meaning that would still not work with this Q tool.
by dullgiulio 6y ago
Redirection is not a parameter, meaning that would still not work with this Q tool.
- jraph 6y agoThis is not a simple redirection. cmd <(subcmd) is a bashism that redirects the output of command subcmd to something that looks like a regular file to command cmd. Command cmd receive a path at the place the <(subcmd) syntax is used. Different from cmd < f, which redirects the contents of file f to cmd's input. So, this should work :-)