I\'m trying to use an array to store a list of file names using the find command.
For some reason the array fails to work in the bash used by the school
I was having issue with Johannes Weiß's solution, if I was just doing an echo it would work for the full list of files. However, if I tried running ffmpeg on the next line the script would only process the first file it encountered. I assumed some IFS funny business due to the pipe but I couldn't figure it out and ran with a for loop instead:
for i in $(find . -name '*.mov' );
do
echo "$i"
done