Skip to content
Advertisement

bash scripting, handling spaces in filesnames in a for loop strange behaviour

help. everything i’ve tried has failed. I’m trying to fix up my video collection and lots of them have spaces in the names/etc I want to transcode them and I’ve written the script below, but its failing. 2 of the filenames I’m using for testing are “13 Eerie (2013).avi” and “Ace.Ventura.When.Nature.Calls.1995.720p.WEB-DL.x264-mSD.mkv”

i have tried several things from using print0 on find to mangling the IFS. any assistance would be appreciated. This current version for some reasons separates everything on the e character


convert.sh

JavaScript

Advertisement

Answer

  • Don’t use command substitution of find
  • Don’t use for loop
  • Use process substitution to get output from find
  • Use -print0 option and read using while loop
  • Better to avoid uppercase variable names
  • Use bash shebang

Code:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement