会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
信方互联网硬汉
行走互联,硬汉信方
博客园
首页
新随笔
联系
订阅
管理
2019年8月3日
Linux记录-批量更改当前目录的文件后缀名
摘要: #!/bin/bash path=. for file in $(ls $path) do if [ -f $file ] then filename=${file%.*} bak=${file#*.} if [ $bak == "$1" ] then mv $filename"."$1 $file
阅读全文
posted @ 2019-08-03 19:19 信方
阅读(640)
评论(0)
推荐(0)
编辑
公告