创建当前日期时间为名字的文件:
XX=`date -d "today" +"%Y%m%d%H%M%S"`
echo $XX
touch ${XX}
关于if else fi
多于两种情况的 使用方法,有两种
第一种(单层)
if
then
elif
then
elif
then
fi
或者这样:(多层if)
if
then
if
then
fi
else
if
then
else
fi
fi
获取一个文件的行数
wc -l file
这样会同时输出文件名字,只获得数字的方法如下:
cat file|wc -l
wc-l demo.txt |awk'BEGIN{FS=" "}{print $1}'
阅读(425) | 评论(0) | 转发(0) |