学习是一辈子的事~
2020-03-04
https://dev.mysql.com/downloads/mysql/
阅读更多
2020-03-03
可以从官网去下载(下载很慢),我放了一份在百度云网盘地址:链接: https://pan.baidu.com/s/1dioWcTHx5qR6ffMwS8l-zA 提取码: aqfm
123456789101112131415161718192021222324252627
(function () { var _NS = function () {} _NS.prototype.html = function (obj,value) { var isArray=this.isArrayLike(obj), i=0; if (typeof value == 'string') { if (!isArray) { obj.innerHTML = value; } else { var length = obj.length; while (i < length) { obj[i].innerHTML = value; i += 1; } } } else { if (!isArray) { return obj.innerHTML; } else { return obj[0].innerHTML; } } } window.NS = new _NS();})();
crontab -e
crontab -l
主要参考了:https://blog.csdn.net/qq_32180569/article/details/83417656这篇文档