mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 07:51:38 +00:00
Fix small mistake in README
This commit is contained in:
parent
ddddc3f1db
commit
d49b0aa977
1 changed files with 2 additions and 2 deletions
|
@ -374,8 +374,8 @@ If we want to run a command on all search results, we can pipe the output to `xa
|
|||
``` bash
|
||||
> fd -0 -e rs | xargs -0 wc -l
|
||||
```
|
||||
Here, the `-0` option tells *fd* to separate search results by the NULL character (instead of .
|
||||
newlines) In the same way, the `-0` option of `xargs` tells it to read the input in this way .
|
||||
Here, the `-0` option tells *fd* to separate search results by the NULL character (instead of
|
||||
newlines). In the same way, the `-0` option of `xargs` tells it to read the input in this way.
|
||||
|
||||
### Using fd with `fzf`
|
||||
|
||||
|
|
Loading…
Reference in a new issue