码迷,mamicode.com
首页 > 系统相关 > 详细

Linux批量更改文件后缀名

时间:2019-06-28 16:52:03      阅读:509      评论:0      收藏:0      [点我收藏+]

标签:解决   inux   one   内容   当前目录   bsp   blog   echo   rgs   

内容来源于:https://www.cnblogs.com/nkwy2012/p/6362207.html

 

一.rename解决

1.  Ubuntu系统下

rename ‘s//.c//.h/‘  ./*

把当前目录下的后缀名为.c的文件更改为.h的文件

2.  CentOS5.5系统下

rename .c  .h   *.c

把当前目录下的后缀名为.c的文件更改为.h的文件

 

二.shell 脚本解决

#!/bin/bash

#http://blog.csdn.NET/longxibendi
find ./ -name *.c  | while read i
do
        echo "$i";
        mv $i.c  $i.h
done

   

三.find  xargs 解决

 find ./ -name "*.c" | awk -F "." ‘{print $2}‘ | xargs -i -t mv ./{}.c  ./{}.h

  

Linux批量更改文件后缀名

标签:解决   inux   one   内容   当前目录   bsp   blog   echo   rgs   

原文地址:https://www.cnblogs.com/triple-y/p/11103312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!