Bash – Is this redirecting to /dev/null

bashio-redirectionshell

I found this script on the arch wiki which prefixes an ffmpeg command like this

< /dev/null ffmpeg -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}"

I understand the ffmpeg command, it is the < /dev/null part. Is it supposed to redirect the verbose output to /dev/null/?

Best Answer

No... it is reading from /dev/null. command < input and < input command are equivalent.

(So are > output command and command > output, by the way.)

Related Question