robolson (owner)

Revisions

gist: 137147 Download_button fork
public
Description:
Shell command to fix escaped spaces in filenames
Public Clone URL: git://gist.github.com/137147.git
Bash
1
2
# Finds all the files with "%20" in their filename and replaces it with a plain space
find . -name "*%20*" -exec sh -c 'mv ${0} "${0//\%20/ }"' {} \;