/ Published in: Bash
Execute on the command line. Assumes all files are in the current directory; does not recurse into subdirectories. Replace "*.html" with correct search term for your situation; replace "FS-" with the leading text you wish to remove. This example removes the text FS- from all files which end in .html
Expand |
Embed | Plain Text
for i in *.html; do mv "$i" ${i##FS-}; done;
Comments
Subscribe to comments
You need to login to post a comment.

learned from http://www.debian-administration.org/articles/150