由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 怎样同时改很多文件的名字。
相关主题
有关Unix shell script的问题a question about rename
a question about renaming.how to turn off sendmail
急问。。。urgent...在线等。。。Re: [转载] 一个很急迫的问题,谢谢
总结一下:如何在unix下一次性rename n-多个文件名How to use files with names like "-123.txt"?
help on unixhow to rename a bunch of files
Unix 下C 编程A question about awk
question about a unix commandhelp urgent!
Any idea on batch renaming files?how to handle *.pkg files?
相关话题的讨论汇总
话题: bc话题: abc话题: 文件
进入Unix版参与讨论
1 (共1页)
j****e
发帖数: 508
1
请问在unix下,怎样同时改很多有相同前缀或后缀的文件的名字,如,想把abc* 改为bc*
谢谢!
b***x
发帖数: 161
2
如果你的系统有rename命令,man之
不然就写个script了

【在 j****e 的大作中提到】
: 请问在unix下,怎样同时改很多有相同前缀或后缀的文件的名字,如,想把abc* 改为bc*
: 谢谢!

j****e
发帖数: 508
3
Thanks, man!

为bc*

【在 b***x 的大作中提到】
: 如果你的系统有rename命令,man之
: 不然就写个script了

q*z
发帖数: 13362
4
for i in abc*; do mv $i `echo $i|sed -e s/abc/bc/g`; done

改为bc*

【在 j****e 的大作中提到】
: 请问在unix下,怎样同时改很多有相同前缀或后缀的文件的名字,如,想把abc* 改为bc*
: 谢谢!

1 (共1页)
进入Unix版参与讨论
相关主题
how to handle *.pkg files?help on unix
Solars questionUnix 下C 编程
格式问题question about a unix command
Re: [转载] How to see a directory content in a http website?Any idea on batch renaming files?
有关Unix shell script的问题a question about rename
a question about renaming.how to turn off sendmail
急问。。。urgent...在线等。。。Re: [转载] 一个很急迫的问题,谢谢
总结一下:如何在unix下一次性rename n-多个文件名How to use files with names like "-123.txt"?
相关话题的讨论汇总
话题: bc话题: abc话题: 文件