用shell按年月创建目录

来源:互联网 发布:中国新歌声网络直播吗 编辑:程序博客网 时间:2024/04/29 22:23


输入年份,创建月目录,在每个月的目录下再创建日的子目录

程序如下:

   #!/bin/bash
echo "start..."
BigMonth=$(seq 1 31)
SmallMonth=$(seq 1 30)
TargetDir=`pwd`
echo "please input the year..."
read year

echo "the year is $year..."
mode=$((($year)%4))
echo "the mode is $mode..."
if [ $mode -eq 0 ];then
    Feb=$(seq 1 29)
else
    Feb=$(seq 1 28)
fi


for i in 1 3 5 7 8 10 12
do
    for j in ${BigMonth}
    do
        mkdir -p $TargetDir/$i/$j
    done
done
echo "the odd is done..."
for i in 4 6 9 11
do
    for j in ${SmallMonth}
    do
        mkdir -p $TargetDir/$i/$j
    done
done

for i in ${Feb}
do
    mkdir -p $TargetDir/2/$i
done

原创粉丝点击