首页 > 其他 > 详细

FOR循环删除文件后缀名

时间:2016-02-24 15:43:41      阅读:202      评论:0      收藏:0      [点我收藏+]

工作目录下有1.txt,2.txt,3.txt...10.txt,10个文件,如下所示:

-rw-r--r-- 1 root root 0 2月  24 14:59 10.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 1.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 2.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 3.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 4.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 5.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 6.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 7.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 8.txt
-rw-r--r-- 1 root root 0 2月  24 14:59 9.txt

需求是将文件的后缀名.txt批量删除,shell脚本如下:

#!/bin/bash
for i in `ls`; do mv -f $i `echo $i | sed ‘s/\.txt//‘`;done

将此shell脚本放到当前的工作目录下,授予可执行权限,运行可实现此功能,实现后的效果如下:

-rw-r--r-- 1 root root  0 2月  24 14:59 1
-rw-r--r-- 1 root root  0 2月  24 14:59 10
-rw-r--r-- 1 root root  0 2月  24 14:59 2
-rw-r--r-- 1 root root  0 2月  24 14:59 3
-rw-r--r-- 1 root root  0 2月  24 14:59 4
-rw-r--r-- 1 root root  0 2月  24 14:59 5
-rw-r--r-- 1 root root  0 2月  24 14:59 6
-rw-r--r-- 1 root root  0 2月  24 14:59 7
-rw-r--r-- 1 root root  0 2月  24 14:59 8
-rw-r--r-- 1 root root  0 2月  24 14:59 9


本文出自 “学无止境” 博客,请务必保留此出处http://linfang.blog.51cto.com/4424588/1744647

FOR循环删除文件后缀名

原文:http://linfang.blog.51cto.com/4424588/1744647

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!