I tried vim -d <(ffprobe one.mp4 2>&1) <(ffprobe two.mp4 2>&1) to see the difference between the two videos' codecs etc., but vim doesn't show anything when it opens, just an empty split screen and this error
"/dev/fd/12" [Permission Denied]
How can I conveniently use vim diff to compare two command outputs?
=()substitution worked. Not too clear why.vimdiff <( ffprobe 'Coasts.mp4' 2>&1 ) <( ffprobe 'Deserts and Grasslands.mp4' 2>&1 )vimdiffbut notvim -dworksvim -dandvimdiffboth work for me here