var a=0;
setInterval(function(){
a++;
},1000);
function yy(){
//方法1
//setTimeout(function(x){
// console.log(x);
// yy();
//},1000,a);
//方法2
setTimeout((function(x){
console.log(x);
yy();
}).bind(null,a),1000);
};
yy();
每月彙整: 2019 年 11 月
移除centos舊的kernel
yum update -y
rpm -q kernel
package-cleanup --oldkernels --count=1 -y