Currently I have
if [[ $INPUT_FILE == *".aac" ]] || [[ $INPUT_FILE == *".aiff" ]] || [[ $INPUT_FILE == *".pcm" ]]
I have tried the following, which does not work. It does not match anything.
if [[ $INPUT_FILE == *".aac" || *".aiff" || *".pcm" ]]
Is there any way to factor this expression?