自制覺得實用性不錯,分享一下铺呵。也怕自己忘了掌实,順便求助一下怎么把linux里的代碼拿出來放到windows里。
year=`date +%Y` #取年份2016贱鼻,注意空格的位置和大小寫滋将。
month=`date +%m`
day=`date +%d`
file="/home/tyw/ppb/${year}" #ppb是我自己建的文件夾
file1="/home/tyw/ppb/${year}/${month}${day}"
if [ $# -eq 0 ] # $#表示文件參數(shù)個數(shù)
then
if [ ! -e $file ] #文件不存在
then
mkdir $file
echo "Creat $file"
fi
if [ -e $file1 ]
then
echo "You have created this file."
else
mkdir $file1
echo "Creat $file1"
fi
elif [ $# -eq 1 ]
then
if [ ! -e $file ]
then
mkdir $file
fi
if [ ! -e $file1 ]
then
mkdir $file1
fi
if [ $1 = "c" ]
then
i=1
while :
do
file2="/home/tyw/ppb/${year}/${month}${day}/${i}.c"
if [ ! -e $file2 ]
then
break
fi
let i++
done
touch $file2
vi $file2
elif [ $1 = "sh"]
then
i=1
while :
do
file2="/home/tyw/ppb/${year}/${month}${day}/${i}.sh"
fi [ ! -e $file2 ]
then
break
fi
let i++
done
touch $file2
chmod +rwx $file2
vi $file2
fi
fi
感謝博哥提供的cat復制法随闽,我終于知道怎么把代碼從linux里面拿出來了。上面都是我一點點打的啊蛾扇。