linux下如何批量複製文件並重命名

for i in file-*; do newFile=`echo $i | sed 's/oldword/newword/'`; cp $i $newFile; done
相關文章
相關標籤/搜索