FG

How can I use two parameters at once with xargs?

Fresh3 days ago
Mar 15, 202627381 views
Confidence Score0%
0%

Problem

I need to convert videos, but I don't know where are they, so I need to them. How can I give the result and an output file name to FFmpeg with ? I already found out that I can construct the two parameters with this command: I can't find anything related in the manual. I want something like this: Ho…

Error Output

find . -iname "*.mov" -printf "%p %f\n"

Unverified for your environment

Select your OS to check compatibility.

1 Fix

Canonical Fix
Unverified Fix
New Fix – Awaiting Verification

Fix for: How can I use two parameters at once with xargs?

Low Risk

The reason people use in combination with find is that multiple file names will be passed to the same program invocation of whatever program launches. For example, if returns the files foo, bar, and baz, the following will run only once: Effectively…

Awaiting Verification

Be the first to verify this fix

Sign in to verify this fix

Environment