Kann jemand eine sichere Lösung empfehlen, um Leerzeichen rekursiv durch Unterstriche in Datei- und Verzeichnisnamen ab einem bestimmten Stammverzeichnis zu ersetzen? Beispielsweise:
$ tree
.
|-- a dir
| `-- file with spaces.txt
`-- b dir
|-- another file with spaces.txt
`-- yet another file with spaces.pdf
wird:
$ tree
.
|-- a_dir
| `-- file_with_spaces.txt
`-- b_dir
|-- another_file_with_spaces.txt
`-- yet_another_file_with_spaces.pdf
foo bar
und eine andere Dateifoo_bar
im selben Verzeichnis befinden?