删除文件扩展名前的最后一个字符

时间:2018-06-25 09:20:52

标签: windows file unix rename command-prompt

我正在尝试删除文件扩展名(.tiff)之前的一系列文件的最后4个字符(在文件夹中)。

例如,代替:

  

TAG_20_5K_SAMPLE_651.tiff

我想要:

  

TAG_20_5K_SAMPLE.tiff(删除_651)

我尝试使用此功能:

rename -n 's/(.*).{12}/$1/' *

来源: https://askubuntu.com/questions/873617/remove-last-n-characters-of-filenames-for-all-files-in-a-directory

但是我收到此错误:

C:\...\Test1>rename -n 's/(.*).{4}/$1/' *
The syntax of the command is incorrect.

enter image description here

有任何线索吗?

0 个答案:

没有答案