Alguém pode recomendar uma solução segura para substituir recursivamente espaços por sublinhados nos nomes de arquivos e diretórios a partir de um determinado diretório raiz? Por exemplo:
$ tree
.
|-- a dir
| `-- file with spaces.txt
`-- b dir
|-- another file with spaces.txt
`-- yet another file with spaces.pdf
torna-se:
$ tree
.
|-- a_dir
| `-- file_with_spaces.txt
`-- b_dir
|-- another_file_with_spaces.txt
`-- yet_another_file_with_spaces.pdf
foo bar
e outro arquivofoo_bar
no mesmo diretório?