这是我的代码。在我重新启动计算机之前,它工作得很好。 我重新启动之前可能没有保存。我不确定。
findInBatches(10000, 1000).then(function(results) {
//use `results` here
}, function(e) {
//an error occurred. 'No results found' or something unpredicted
});
我想检查if [[ "${varA[@]}" =~ $comment ]]
then
echo "This task is already in the Todo list"
else
x=$(cat $file | wc -l)
x=$(($x+1))
echo -e "$x\t$comment\t$dueD" >> $file
fi
是否在数组varA中,如果它存在则
$comment
它,否则添加它。
请帮忙。