Search code examples
macosterminalfinderfile-rename

Remove spaces from filenames in folder


I have a situation where I need to daily go over 400+ files in a folder on Xsan and replace spaces with under-scores in the filenames of the files.

Does anyone one have a script at hand that I can run via the terminal for example that will do this for me?


Solution

  • Here you go, this loops through all files (and folders) in the current directory:

    for oldname in *
    do
      newname=`echo $oldname | sed -e 's/ /_/g'`
      mv "$oldname" "$newname"
    done
    

    Please do note that this will overwrite files with the same name. That is, if there are two files that have otherwise identical filenames, but one has underscore(s) where the other has space(s). In that situation, the one that had underscores will be overwritten with the one that had spaces. This longer version will skip those cases instead:

    for oldname in *
    do
      newname=`echo $oldname | sed -e 's/ /_/g'`
      if [ "$newname" = "$oldname" ]
      then
        continue
      fi
      if [ -e "$newname" ]
      then
        echo Skipping "$oldname", because "$newname" exists
      else
        mv "$oldname" "$newname"
      fi
    done