Fix --exec examples in README

[ci skip]
This commit is contained in:
sharkdp 2017-10-25 21:44:03 +02:00
parent f4ed2ba74d
commit 19afb15a98

View file

@ -111,13 +111,13 @@ commands is similar to that of GNU Parallel:
``` bash
# Convert all jpg files to png files
fd -e jpg -x 'convert "{}" "{.}.png"'
fd -e jpg -x 'convert {} {.}.png'
# Unpack all zip files (if no placeholder is given, the path is appended):
fd -e zip -x unzip
# Convert all flac files into opus files:
fd -e flac -x 'ffmpeg -i "{}" -c:a libopus "{.}.opus"'
fd -e flac -x 'ffmpeg -i {} -c:a libopus {.}.opus'
```
## Install