From 19afb15a98b56b888724da297e83fe82ce901fe5 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 25 Oct 2017 21:44:03 +0200 Subject: [PATCH] Fix --exec examples in README [ci skip] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2350e1..290c7bc 100644 --- a/README.md +++ b/README.md @@ -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