Hi there. I have a lot of files contains date format in their name. I wanted to remove that dates from that files. I wrote the bash script belove. You can use this script. It works 🙂
My files was like that;
2020-10-08-example.md.
Btw, customize it for yourself.
#!/bin/bash
# description: Your files should be like that; 2020-10-08-example.md
for i in *.md
do
mv $i $(echo $i | sed -E 's/([0-9]{4}-[0-9]{2}-[0-9]{2}-)//')
done
What would your approach to this be? How would you solve it?
Top comments (0)