上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 连接本地的MySQL 格式: mysql -h主机地址 -u用户名 -p用户密码 mysql -h localhost -u root -p 导入数据: 登录并导入:mysql -h localhost -u root -p websit < d:/back/web.sql 登录后再导入:sourc 阅读全文
posted @ 2019-12-09 20:50 Ai~低调 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: CentOS: tail -f /var/log/cron Ubuntu: tail -f /var/log/cron.log 注:Ubuntu 默认没有开启cron log. 在 Ubuntu服务器上 查看定时任务的日志时,并没有在 /var/log/cron.log 文件。 看配置发现是默认没有 阅读全文
posted @ 2019-12-09 17:07 Ai~低调 阅读(2423) 评论(0) 推荐(2) 编辑
摘要: crontab命令常见于Unix和Linux的操作系统之中,用于设置周期性被执行的指令。该命令从标准输入设备读取指令,并将其存放于“crontab”文件中,以供之后读取和执行。通常,crontab储存的指令被守护进程激活。crond 常常在后台运行,每一分钟检查是否有预定的作业需要执行。这类作业一般 阅读全文
posted @ 2019-12-09 15:41 Ai~低调 阅读(4373) 评论(0) 推荐(0) 编辑
摘要: 因为Ubuntu上的服务名称是cron不是crond。所以你的命令应该是: service cron start 阅读全文
posted @ 2019-12-09 15:35 Ai~低调 阅读(3273) 评论(0) 推荐(2) 编辑
摘要: git config --global user.name "zxc"配置用户名git config --global user.email "123123@qq.com"配置邮箱 此时, 会在C:\Users\Administrator目录下生成.gitconfig配置文件: 请勿删除! ssh- 阅读全文
posted @ 2019-11-22 13:05 Ai~低调 阅读(4511) 评论(0) 推荐(0) 编辑
摘要: //第一种 var A=[12,78,78,78,89] console.log(A) //第二种 var B=new Array(); B[0]=12 B[1]=34 B[2]=56 console.log(B) //第三种 var C=new Array(3); C[0]=12 C[1]=34 阅读全文
posted @ 2019-11-19 18:13 Ai~低调 阅读(11124) 评论(1) 推荐(0) 编辑
摘要: 在vim中有3中方法可以跳转到指定行(首先按esc进入命令行模式): 1、ngg/nG (跳转到文件第n行,无需回车) 2、:n (跳转到文件第n行,需要回车) 3、vim +n filename (在打开文件后,跳转到文件的第n行) 转载自:https://www.cnblogs.com/senc 阅读全文
posted @ 2019-11-19 14:20 Ai~低调 阅读(11171) 评论(0) 推荐(1) 编辑
摘要: Vim格式化代码功能——gg=G 常用的几个功能:(1) gg=G 是一个自动缩进的命令 (在命令状态下直接输入,不需要输入冒号),gg是文件首,G是文件尾,所以 gg=G 是整理全部代码。(2) == 整理当行,加行数整理多行。(3) ={ 或者 =i{ 整理一个代码块。(4) mG=nG 当 m 阅读全文
posted @ 2019-11-19 12:35 Ai~低调 阅读(3120) 评论(0) 推荐(0) 编辑
摘要: Git一般有很多分支,我们clone到本地的时候一般都是master分支,那么如何切换到其他分支呢?主要命令如下: 1. 查看远程分支 $ git branch -a 我在mxnet根目录下运行以上命令: ~/mxnet$ git branch -a * master remotes/origin/ 阅读全文
posted @ 2019-11-18 15:09 Ai~低调 阅读(99757) 评论(2) 推荐(1) 编辑
摘要: const element = await page.$("#id"); if (element) console.log('对象存在') else console.log('对象不存在') 阅读全文
posted @ 2019-11-16 16:39 Ai~低调 阅读(1642) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页