Linux批量更改文件后缀名
centOS
shell
rename .mp4 60.mp4 *.mp4
说明:找到*.mp4后缀的文件,把.mp4替换成60.mp4
ubuntu
shell
rename 's/\.c/\.h/' ./*
把当前目录下的后缀名为.c的文件更改为.h的文件
参加链接: http://blog.chinaunix.net/uid-21516619-id-1825029.html