robsnider
11/6/2017 - 6:33 PM

Rename files on the command line

Rename files on the command line

for f in text_to_replace; do mv "$f" "${f/text_to_replace/text_to_use}";done