B-52-1 发表于 2004-4-22 11:03:31

如何批量修改文件名,*.DAT >> *.mpg

如题

LieDang 发表于 2004-4-23 08:45:29

用rename.
具体参看 info rename.

LieDang 发表于 2004-4-23 08:45:56

用rename.
具体参看 info rename.

litty 发表于 2004-4-25 11:40:11

mv *.DAT*.mpg

sjf_001 发表于 2004-4-27 00:53:54

for i in `ls *.DAT|cut -d. -f1`
do mv $i.DAT $i.mpg
done

B-52-1 发表于 2004-4-30 14:43:06

都不行啊!!

sjf_001 发表于 2004-5-1 01:59:55

我这个好像没问题啊,自己实践过的,注意 `ls *.DAT|cut -d. -f1`两边是反引号,不是单引号,就是tab键上面那个。

用rename也行,更简单,rename .DAT .mpg *.DAT就行了。

flashor 发表于 2004-5-6 23:01:49

rename

NAME
       rename - Rename files

SYNOPSIS
       rename from to file...

DESCRIPTION
       renamewillrenamethe specified files by replacing the first occur-
       rence of from in their name by to.

       For example, given the files foo1, ..., foo9, foo10, ...,foo278,the
       commands

            rename foo foo0 foo?
            rename foo foo0 foo??

       will turn them into foo001, ..., foo009, foo010, ..., foo278.

       And
            rename .htm .html *.htm

       will fix the extension of your html files.
页: [1]
查看完整版本: 如何批量修改文件名,*.DAT >> *.mpg