Add an example of the -X option using rg

This commit is contained in:
tacoda 2021-11-20 11:55:51 -05:00 committed by David Peter
parent b211ded5de
commit f2eb1be678
1 changed files with 5 additions and 0 deletions

View File

@ -194,6 +194,11 @@ fd … -X ls -lhd --color=always
This pattern is so useful that `fd` provides a shortcut. You can use the `-l`/`--list-details`
option to execute `ls` in this way: `fd … -l`.
Another example of the `-X` option can be shown with `rg`, using all the search results as arguments:
```bash
fd … -X rg -i target
```
Convert all `*.jpg` files to `*.png` files:
``` bash
fd -e jpg -x convert {} {.}.png