标签:
#!/bin/bash diarypath=‘/home/quanwei/documents/diary/riji.riji‘ tempfile=`mktemp -u` vi $tempfile if [ -f $tempfile ]; then echo `date` >> $diarypath cat $tempfile >> $diarypath rm $tempfile echo 日记写入 else echo ‘文件为空而取消日记‘ ;fi
标签:
原文地址:http://my.oschina.net/000quanwei/blog/393316