06 2019 档案

摘要:进入编辑模式后: h ← j ↓ k ↑ l → ctrl+f 屏幕向下移动一页 ctrl+b 屏幕向上移动一页 ctrl+d 屏幕向下移动半页 ctrl+u 屏幕向上移动半页 + 光标移动到非空格符的下一行 - 光标移动到非空格符的上一行 n<space> 那个n表示数字例如20,按下数字后再按空 阅读全文

posted @ 2019-06-27 17:24 discover_dev 阅读(267) 评论(0) 推荐(0)

摘要:随机函数 select rand() declare @age int set @age = rand()*100 select @age 数据类型转换 declare @birthday datatime set @birthday = getdate() select convert (varc 阅读全文

posted @ 2019-06-25 13:33 discover_dev 阅读(187) 评论(0) 推荐(0)

摘要:有些程序我们在打开时,会一直占用我们的终端,而且终端还不能关掉,所以这时候我们就需要让程序在后台运行。 1.命令:nohup nohup python -u run.py > run.log 2>&1 & 参数说明: run.py: 你需要后台运行的程序. >: 日志文件追加到文件中 run.log 阅读全文

posted @ 2019-06-17 16:37 discover_dev 阅读(6315) 评论(0) 推荐(0)

导航