$ uname -a
Linux a 2.6.35.10-74.fc14.i686.PAE #1 SMP Thu Dec 23 16:10:47 UTC 2010 i686 i686 i386 GNU/Linux
$ lsb_release -a
LSB Version: :core-4.0-ia32:core-4.0-noarch
Distributor ID: Fedora
Description: Fedora release 14 (Laughlin)
Release: 14
Codename: Laughlin
$ yum list | grep -i soundconverter
soundconverter.noarch 1.5.3-7.fc14 @updates
$
我如何设置一个模式来输出与原始文件名相同的文件名?例如
something.mp3
→something.ogg
为什么这个功能没有在 SoundConverter 中实现?
PS:{Filename}
不起作用。
答案1
我为文件模式选择了此选项:“与输入相同,但带有附加后缀”。这给了我如下文件名:something.mp3.ogg
然后我就跑了
find . -type f -name "*.mp3.ogg" -exec rename .mp3.ogg .ogg {} \;
要得到something.ogg
。