如何用shell脚本遍历指定目录下的文件,并按后缀名分类
3个回答
展开全部
脚本1:
#!/bin/bash
#
#
cd /tmp/script
cfile=` find -name '*.c' `
hfile=` find -name '*.h' `
for fc in $cfile
do
cfname=`basename -s .c $fc`
cat $fc >/tmp/scripttest/$cfname.txt
done
for fh in $hfile
do
cp $fh /tmp/scripttest
done
#!/bin/bash
#
#
cd /tmp/script
cfile=` find -name '*.c' `
hfile=` find -name '*.h' `
for fc in $cfile
do
cfname=`basename -s .c $fc`
cat $fc >/tmp/scripttest/$cfname.txt
done
for fh in $hfile
do
cp $fh /tmp/scripttest
done
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#!/bin/bash
while true
do
if [ -f /root/*.warming ];then
cp /root/xxx.conf /tmp
fi
done
while true
do
if [ -f /root/*.warming ];then
cp /root/xxx.conf /tmp
fi
done
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
搜一下:如何用shell脚本遍历指定目录下的文件,并按后缀名分类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询