Mass renaming files in Linux
1 | ls -d *.ext | sed 's/\(.*\).ext$/mv "&" "\1.newext"/' | sh |
Explanation here: Mass renaming with Linux shell
1 | ls -d *.ext | sed 's/\(.*\).ext$/mv "&" "\1.newext"/' | sh |
Explanation here: Mass renaming with Linux shell
There are no comments yet. You could be the first!
No Comments Yet