5 ms·
Fish does brace expansion, even for empty braces. In order to actually pass braces to xargs, do: find . | xargs -I \{\} grep pat \{\}
by nickburlett 14y ago
Fish does brace expansion, even for empty braces. In order to actually pass braces to xargs, do:
find . | xargs -I \{\} grep pat \{\}
- herdrick 14y agoOK, thanks.