linux shell 编程 9 for 循环删除文件
一、删除多个文件
#!/bin/bash
DATE=$(date -d '-1 month' +%Y%m%d)
#DATE=20160104
#all file
file1=autoimportdate.log
file2=autoPubbjNews.log
file3=autoPubdgNews.log
file4=autoPublishDate.log
file5=importwuxiandata.log
file6=autoPublishNews.log
file7=AutoPubSpiderNews.log
file8=autoPubztNews.log
file9=autoSendMail.log
file10=importnewhousedata.log
file11=importnewhousedata.log.1
file12=publishinfo.log
file13=ZhiShiClick.log
file14=ZhiShiClick.log.1
file15=ZhiShiClick.log.2
logstr='/www/autopublish.news.fan.com/auto_publishnews/logs/'
cd $logstr
pwd
for((i=1;i<16;i++));
do
final="file"$i
file=$DATE${!final}
sudo rm $file
echo "results:"$? ":fielName:" $file
done
删除一个月前的今天的多个日志文件,注意其中有个${!final} 来获取两个变量值组成的变量名对应的变量的值,也就是shell的间接引用,下面看一下一个简单的间接引用的例子:
1.感叹号的使用
aaa=123
bbb=aaa
echo $bbb
echo ${!bbb}
输出结果:aaa
123
可见,感叹号是可以引用间接变量的值
二、for循环删除文件
实例:
#!/bin/bash
# delete importnewhouse data logs shell
cd /www/autopublish.news.fang.com/auto_publishnews/logs/
for((i=1;i<100;i++));
do
n="20151106importnewhousedata.log.$i"
sudo rm $n
if [ 0 -eq $? ]
then
echo "delete $i ok !"
else
echo "delete $i failed"
fi
done
************** for 循环 *************
来自网站
1、 for((i=1;i<=10;i++));do echo $(expr $i \* 4);done
2、在shell中常用的是 for i in $(seq 10) /fro i in $(seq 1 10)
3、for i in `ls`
4、for i in ${arr[@]}
5、for i in $* ; do
6、for File in /proc/sys/net/ipv4/conf/*/accept_redirects; do
7、for i in f1 f2 f3 ;do
8、for i in *.txt
9、for i in $(ls *.txt)
for in语句与` `和$( )合用,利用` `或$( )的将多行合为一行的缺陷,实际是合为一个字符串数组
10、LIST="rootfs usr data data2"
for d in $LIST; do
用for in语句自动对字符串按空格遍历的特性,对多个目录遍历
11、for i in {1..10}
12、for i in stringchar {1..10}
13、awk 'BEGIN{for(i=1; i<=10; i++) print i}'
****************** seq 的用法**************
用于产生从某个数到另外一个数之间的所有整数
例一:
# seq 1 10
结果是1 2 3 4 5 6 7 8 9 10
例二:
#!/bin/bash
for i in `seq 1 10`;
do
echo $i;
done
或者用
for i in $(seq 1 10)
也可以
seq
-f, --format=FORMAT use printf style floating-point FORMAT (default: %g)
-s, --separator=STRING use STRING to separate numbers (default: /n)
-w, --equal-width equalize width by padding with leading zeroes
-f 选项 指定格式
#seq -f"%3g" 9 11
9
10
11
% 后面指定数字的位数 默认是"%g",
"%3g"那么数字位数不足部分是空格
#sed -f"%03g" 9 11 这样的话数字位数不足部分是0
% 前面制定字符串
seq -f "str%03g" 9 11
str009
str010
str011
-w 指定输出数字同宽 不能和-f一起用
seq -w -f"str%03g" 9 11
seq: format string may not be specified when printing equal width strings
seq -w 98 101
098
099
100
101
输出是同宽的
-s 指定分隔符 默认是回车
seq -s" " -f"str%03g" 9 11
str009 str010 str011
要指定/t 做为分隔符号
seq -s"`echo -e "/t"`" 9 11
指定/n/n作为分隔符号
seq -s"`echo -e "/n/n"`" 9 11
19293949596979899910911
得到的是个错误结果
不过一般也没有这个必要 它默认的就是回车作为分隔符
更多推荐
所有评论(0)