strip leading text from all filenames in a directory


/ Published in: Bash
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. for i in *.html; do mv "$i" ${i##FS-}; done;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.