You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How to remove spaces in filenames and lowercasing — First published in fullweb.io issue #20
How to remove spaces in filename and lowercasing
A short script this week to replace spaces in filenames in a given folder:
# Looping over files, forging new filename, and then renaming it.# Spaces will be replaced by underscores (_).foroldnamein*do
newname=`echo $oldname| sed -e 's/ /_/g'`