vibol.hou
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