Batch File Renaming

May have posted on this previously.

Just had a bunch of audio files that I wanted to remove a specific phrase from the name.

Looped through the matching files and did a move to the output of a string editing command with SED:

for f in string_to_remove_*; do mv "$f" "$(echo $f | sed 's/string_to_remove_//g')"; done

Pretty sweet.