shell 文件的操作(find)

find命令:路径


hehe@ubuntu:/home/shell/12$ cat 12-2.sh 
#! /bin/bash
#指定多个路径
file=`find /etc /usr/local -name bin`
echo "$file"

测试:


#! /bin/bash
#搜索HTTPd.conf 的文件
file=`find /etc -name httpd.conf -print`

# find /etc -name "data[123abc]" -print  == find /etc -name "data[1-3a-c] -print"
#可搜索 data1 data2 data3 dataa datab datac 的文件
#输出前五行
head -5 $file

删除所查找的:

#! /bin/bash

#删除后缀为 .xxx 的文件
find /home -name "*.ppp" -exec rm -f {} \;
#如果命令成功退出 则输出成功提示 否则给出错误提示

if [ $? -eq 0 ]
then
    echo "the files have been deleted successfully";
else
    echo "failed to delete file";
fi


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值