blob: dc41f848875672d3a9952281c9170bdbb3877749 (
plain)
1
2
3
4
5
6
7
|
#!/bin/zsh
# Rmove annoying characters from filenames
# You may need to run multiple times to get everything depending on directory names
for f in **/*\ *; do mv "${f}" "${f// /_}"; done
for f in **/*\'*; do mv "$f" "${f//'/}"; done
for f in **/*"*; do mv "$f" "${f//"/}"; done
|