用来写日记的脚本程序[bash]
#!/bin/bashdiarypath='/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
以上是 用来写日记的脚本程序[bash] 的全部内容, 来源链接: utcz.com/z/509745.html